/* =============================================
   Pro.Contractor — Shared Stylesheet
   Use on all service and city pages
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #2d6a4f;
  --green-light: #40916c;
  --green-pale: #d8f3dc;
  --gold: #b5832a;
  --dark: #1a1a1a;
  --gray: #555;
  --light-gray: #f7f7f5;
  --border: #e0ddd6;
  --white: #ffffff;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
}

body { font-family: 'Georgia', serif; color: var(--dark); background: var(--white); line-height: 1.7; font-size: 16px; }

/* ---- NAV ---- */
.navbar { display: flex; align-items: center; gap: 1.5rem; padding: 0 2rem; height: 68px; background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--dark); font-family: sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.02em; margin-right: auto; flex-shrink: 0; }
.logo img { border-radius: 4px; }
.nav-links { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--gray); font-family: sans-serif; font-size: 14px; padding: 6px 12px; border-radius: var(--radius); transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: var(--green); background: var(--green-pale); }
.nav-links .active > a { color: var(--green); font-weight: 600; }
.has-dropdown { position: relative; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-md); min-width: 200px; padding: 6px 0; z-index: 200; }
.has-dropdown:hover .dropdown { display: block; }
.dropdown li { list-style: none; }
.dropdown a { display: block; padding: 8px 16px; font-size: 13px; border-radius: 0; }
.btn-nav { background: var(--green); color: var(--white) !important; padding: 8px 18px !important; border-radius: var(--radius) !important; font-weight: 600; font-family: sans-serif; font-size: 14px; text-decoration: none; white-space: nowrap; transition: background 0.2s; }
.btn-nav:hover { background: var(--green-light) !important; }
.hamburger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--dark); }
.mobile-menu { display: none; flex-direction: column; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 2rem; gap: 0.25rem; }
.mobile-menu a { text-decoration: none; color: var(--dark); font-family: sans-serif; font-size: 15px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.mobile-menu .btn-primary { background: var(--green); color: var(--white); text-align: center; border-radius: var(--radius); padding: 10px; font-weight: 600; margin-top: 8px; border: none; }
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: block; }
  .mobile-menu.open { display: flex; }
}

/* ---- HERO ---- */
.page-hero { background: linear-gradient(135deg, #1a3a2a 0%, #2d6a4f 60%, #40916c 100%); color: var(--white); padding: 5rem 2rem 4rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.07)"/></svg>') repeat; }
.page-hero .hero-tag { font-family: sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); border-radius: 20px; padding: 5px 14px; display: inline-block; margin-bottom: 1.2rem; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.page-hero p { font-size: 1.15rem; opacity: 0.88; max-width: 600px; margin: 0 auto 2rem; }
.hero-badges { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badge { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; padding: 6px 14px; font-family: sans-serif; font-size: 13px; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--white); color: var(--green); padding: 14px 28px; border-radius: var(--radius); font-family: sans-serif; font-size: 15px; font-weight: 700; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; display: inline-block; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); padding: 12px 26px; border-radius: var(--radius); font-family: sans-serif; font-size: 15px; font-weight: 600; text-decoration: none; transition: background 0.2s; display: inline-block; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ---- CONTENT SECTIONS ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 4rem 0; }
.section-alt { background: var(--light-gray); }
.section-label { font-family: sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.25; margin-bottom: 1rem; }
.section-title em { font-style: normal; color: var(--green); }
.section-sub { font-size: 1.05rem; color: var(--gray); max-width: 620px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---- CARDS ---- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon { width: 48px; height: 48px; background: var(--green-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 1rem; }
.card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.95rem; color: var(--gray); line-height: 1.6; }

/* ---- FEATURES LIST ---- */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }
.feature-item { display: flex; align-items: flex-start; gap: 12px; padding: 1rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); }
.feature-check { width: 22px; height: 22px; background: var(--green); border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.feature-item p { font-size: 0.95rem; color: var(--dark); font-weight: 600; margin: 0; }
.feature-item small { display: block; color: var(--gray); font-weight: 400; font-size: 0.875rem; margin-top: 2px; }

/* ---- SPLIT SECTION ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .split { grid-template-columns: 1fr; gap: 2rem; } }
.split-img { border-radius: var(--radius-lg); overflow: hidden; }
.split-img img { width: 100%; height: 380px; object-fit: cover; display: block; }

/* ---- PRICING BOX ---- */
.pricing-box { background: var(--green); color: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
@media (max-width: 700px) { .pricing-box { grid-template-columns: 1fr; } }
.price-item { text-align: center; }
.price-item .price-label { font-family: sans-serif; font-size: 12px; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.price-item .price-val { font-size: 1.8rem; font-weight: 700; }
.price-item .price-note { font-size: 0.85rem; opacity: 0.8; margin-top: 4px; }

/* ---- FAQ ---- */
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { padding: 1.1rem 1.25rem; font-family: sans-serif; font-weight: 600; font-size: 0.95rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--green); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 0 1.25rem 1.1rem; font-size: 0.95rem; color: var(--gray); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ---- TESTIMONIALS ---- */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.testimonial { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.testimonial .stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.75rem; }
.testimonial p { font-size: 0.95rem; color: var(--dark); line-height: 1.65; font-style: italic; margin-bottom: 1rem; }
.testimonial .author { font-family: sans-serif; font-size: 13px; font-weight: 600; color: var(--gray); }

/* ---- CTA BAND ---- */
.cta-band { background: var(--dark); color: var(--white); padding: 4rem 2rem; text-align: center; }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.cta-band p { opacity: 0.75; margin-bottom: 2rem; font-size: 1.05rem; }
.cta-band .btn-primary { font-size: 16px; }

/* ---- BREADCRUMB ---- */
.breadcrumb { padding: 0.75rem 2rem; font-family: sans-serif; font-size: 13px; color: var(--gray); background: var(--light-gray); border-bottom: 1px solid var(--border); }
.breadcrumb a { color: var(--green); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---- CITIES STRIP ---- */
.cities-strip { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.city-tag { background: var(--green-pale); color: var(--green); padding: 5px 12px; border-radius: 20px; font-family: sans-serif; font-size: 13px; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.city-tag:hover { background: var(--green); color: var(--white); }

/* ---- FOOTER ---- */
footer { background: #111; color: #ccc; padding: 3rem 2rem 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 2rem; max-width: 1100px; margin: 0 auto; padding-bottom: 2.5rem; }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-logo { color: #fff !important; }
.footer-col p { font-size: 13px; line-height: 1.7; margin-top: 0.75rem; }
.footer-col h4 { font-family: sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: #888; margin-bottom: 0.75rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul a { color: #aaa; font-family: sans-serif; font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }
.footer-contact li { font-family: sans-serif; font-size: 13px; line-height: 1.8; }
.footer-contact a { color: #aaa; text-decoration: none; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #222; padding: 1.25rem 0; text-align: center; }
.footer-bottom p { font-family: sans-serif; font-size: 12px; color: #555; max-width: 1100px; margin: 0 auto; }
