/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green: #193B32; --green-dark: #0F2A22; --green-light: #1E4A3D;
  --orange: #e67300; --orange-dark: #c25f00; --orange-glow: rgba(230,115,0,0.15);
  --cream: #F7F5F0; --white: #ffffff; --text: #1a1a1a; --text-muted: #5a5a5a;
  --text-light: #c9d4c9; --border: #e2e0db; --radius: 8px; --radius-lg: 16px;
  --shadow: 0 2px 20px rgba(0,0,0,0.06); --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px; --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.6; font-size: 16px; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 860px; }
.text-center { text-align: center; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
.section-label { font-family: var(--font-body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--orange); margin-bottom: 16px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; font-family: var(--font-body); font-size: 16px; font-weight: 600; border-radius: var(--radius); cursor: pointer; transition: all var(--transition); border: 2px solid transparent; text-decoration: none; }
.btn--primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(230,115,0,0.3); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.btn--outline { background: transparent; border-color: var(--green); color: var(--green); }
.btn--outline:hover { background: var(--green); color: var(--white); }
.btn--lg { padding: 20px 40px; font-size: 18px; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder { background: linear-gradient(135deg, #e8ebe6 0%, #d4d9d0 100%); border: 2px dashed #8a9488; border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #4a5a4a; font-family: 'SF Mono', Consolas, monospace; font-size: 12px; text-align: center; padding: 32px; min-height: 200px; width: 100%; }
.img-placeholder::before { content: "📷"; font-size: 36px; margin-bottom: 12px; opacity: 0.6; }
.img-placeholder strong { color: var(--orange); font-size: 14px; margin-bottom: 4px; }
.img-placeholder span { font-size: 11px; color: #6b7568; }
.img-placeholder em { font-size: 11px; color: #6b7568; font-style: italic; margin-top: 6px; max-width: 80%; }

/* ===== TOPBAR ===== */
.topbar { background: var(--green-dark); color: var(--white); padding: 10px 0; font-size: 14px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--white); font-weight: 600; transition: opacity var(--transition); }
.topbar a:hover { opacity: 0.8; }

/* ===== HEADER ===== */
.header { background: var(--white); padding: 16px 0; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); background: rgba(255,255,255,0.97); }
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.logo-text { font-family: var(--font-display); font-size: 26px; color: var(--green-dark); line-height: 1; }
.logo-text small { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }
.nav { display: flex; gap: 32px; align-items: center; }
.nav a { font-size: 15px; font-weight: 500; color: var(--text); transition: color var(--transition); }
.nav a:hover { color: var(--orange); }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar { background: var(--cream); padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-muted); }
.breadcrumb-bar a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb-bar a:hover { color: var(--orange); }
.breadcrumb-bar .sep { margin: 0 8px; opacity: 0.5; }

/* ===== SERVICE HERO ===== */
.service-hero { background: var(--green-dark); color: var(--white); padding: 72px 0; position: relative; overflow: hidden; }
.service-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(ellipse at 80% 50%, rgba(25,59,50,0.4) 0%, transparent 70%); pointer-events: none; }
.service-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.service-hero h1 { font-size: clamp(34px, 4.5vw, 50px); margin-bottom: 16px; line-height: 1.1; }
.service-hero h1 .accent { color: var(--orange); }
.service-hero-sub { font-size: 18px; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }
.service-hero-phone { font-family: var(--font-display); font-size: 32px; color: var(--white); display: block; margin-bottom: 24px; transition: color var(--transition); }
.service-hero-phone:hover { color: var(--orange); }
.service-hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.service-hero .img-placeholder { min-height: 380px; border-radius: var(--radius-lg); }

/* ===== CONTENT + SIDEBAR ===== */
.content-area { padding: 72px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.content-main h2 { font-size: clamp(28px, 3.5vw, 38px); margin-bottom: 20px; color: var(--text); }
.content-main h3 { font-size: 24px; margin-bottom: 16px; color: var(--text); margin-top: 48px; }
.content-main p { font-size: 16px; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; }
.content-main ul.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.content-main ul.check-list li { font-size: 16px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; }
.content-main ul.check-list li::before { content: "✓"; color: var(--orange); font-weight: 800; font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.content-divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

/* -- Inline Image -- */
.content-image { margin: 32px 0; border-radius: var(--radius-lg); overflow: hidden; }
.content-image-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }

/* -- AEO Answer Box -- */
.answer-box {
  background: var(--cream); border-left: 4px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px; margin: 28px 0; font-size: 16px; line-height: 1.8; color: var(--text);
}
.answer-box strong { color: var(--text); }
.answer-box p { margin-bottom: 8px; color: var(--text); }
.answer-box p:last-child { margin-bottom: 0; }

/* -- Signs Grid -- */
.signs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.sign-item { background: var(--cream); border-radius: var(--radius); padding: 20px; display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.sign-icon { font-size: 20px; flex-shrink: 0; }

/* -- Process Steps -- */
.process-steps { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.process-step { display: flex; gap: 20px; align-items: flex-start; }
.step-num { width: 48px; height: 48px; background: var(--orange); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 20px; flex-shrink: 0; }
.step-content h4 { font-size: 18px; margin-bottom: 6px; color: var(--text); }
.step-content p { font-size: 15px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* -- Comparison Table -- */
.comparison-table { width: 100%; border-collapse: collapse; margin: 28px 0 32px; font-size: 15px; }
.comparison-table th { background: var(--green-dark); color: var(--white); padding: 14px 16px; text-align: left; font-family: var(--font-body); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.comparison-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); line-height: 1.5; }
.comparison-table tr:nth-child(even) td { background: var(--cream); }
.comparison-table .check { color: var(--orange); font-weight: 800; }

/* -- Sidebar -- */
.sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--green-dark); color: var(--white); padding: 32px; border-radius: var(--radius-lg); }
.sidebar-card h3 { font-size: 22px; color: var(--white); margin-bottom: 8px; }
.sidebar-card p { font-size: 15px; color: var(--text-light); margin-bottom: 20px; line-height: 1.6; }
.sidebar-phone { font-family: var(--font-display); font-size: 28px; color: var(--white); display: block; margin-bottom: 20px; transition: color var(--transition); }
.sidebar-phone:hover { color: var(--orange); }
.sidebar-hours { background: var(--cream); padding: 24px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.sidebar-hours h4 { font-family: var(--font-body); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; color: var(--text); }
.sidebar-hours-row { display: flex; justify-content: space-between; font-size: 15px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.sidebar-hours-row:last-child { border-bottom: none; }
.sidebar-hours-row .day { font-weight: 600; color: var(--text); }
.sidebar-hours-row .time { color: var(--text-muted); }
.sidebar-alert { background: #FFF8F0; border: 1px solid var(--orange); padding: 24px; border-radius: var(--radius-lg); }
.sidebar-alert h4 { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--orange); margin-bottom: 8px; }
.sidebar-alert p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ===== FAQ ===== */
.faq-section { background: var(--cream); padding: 72px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; background: var(--white); overflow: hidden; }
.faq-item summary { padding: 22px 52px 22px 24px; cursor: pointer; font-weight: 600; font-size: 17px; list-style: none; position: relative; font-family: var(--font-body); transition: background var(--transition); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 400; color: var(--orange); }
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { background: var(--cream); }
.faq-answer { padding: 0 24px 22px; color: var(--text-muted); font-size: 15px; line-height: 1.8; }

/* ===== SERVICE AREAS STRIP ===== */
.areas-strip { padding: 72px 0; background: var(--white); }
.pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pill { display: inline-block; padding: 12px 24px; background: var(--white); border: 2px solid var(--green); border-radius: 30px; color: var(--green); font-weight: 600; font-size: 15px; transition: all var(--transition); }
.pill:hover { background: var(--green); color: var(--white); }

/* ===== RELATED SERVICES ===== */
.related { padding: 72px 0; background: var(--cream); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.related-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: all var(--transition); }
.related-card:hover { border-color: var(--orange); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.related-card h3 { font-size: 20px; margin-bottom: 8px; }
.related-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.related-card-link { font-size: 14px; font-weight: 600; color: var(--orange); }

/* ===== FINAL CTA ===== */
.final-cta { padding: 80px 0; background: var(--green); color: var(--white); text-align: center; }
.final-cta h2 { font-size: clamp(32px, 4vw, 46px); color: var(--white); margin-bottom: 16px; }
.final-cta p { color: var(--text-light); font-size: 18px; margin-bottom: 36px; }
.final-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--green-dark); color: var(--text-light); padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { font-family: var(--font-display); font-size: 28px; color: var(--white); margin-bottom: 16px; }
.footer-desc { font-size: 15px; line-height: 1.7; }
.footer h4 { color: var(--white); font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin-bottom: 20px; }
.footer li { margin-bottom: 10px; font-size: 15px; }
.footer a { color: var(--text-light); transition: color var(--transition); }
.footer a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 15px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 16px; }

/* ===== MOBILE ===== */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--green-dark); padding: 12px; z-index: 9999; gap: 8px; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
.mobile-cta a { flex: 1; text-align: center; padding: 14px 8px; font-weight: 700; font-size: 14px; border-radius: var(--radius); }
.mobile-cta .m-call { background: var(--white); color: var(--green-dark); }
.mobile-cta .m-request { background: var(--orange); color: var(--white); }

@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav { display: none; }
  .service-hero-inner { grid-template-columns: 1fr; }
  .service-hero .img-placeholder { display: none; }
  .signs-grid { grid-template-columns: 1fr; }
  .content-image-row { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .pills { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
  .topbar-inner { justify-content: center; text-align: center; }
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .service-hero-buttons { flex-direction: column; }
  .service-hero-buttons .btn { width: 100%; justify-content: center; }
}
