/* ============================================
   PLUMBERS 911 — COMPLETE STYLESHEET v2
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.25; }

/* --- Color Variables --- */
:root {
  --primary: #161a4a;
  --primary-light: #1e2260;
  --accent: #d82127;
  --accent-hover: #b81c22;
  --accent-dark: #a01820;
  --nav-blue: #1a90cd;
  --nav-blue-dark: #1578ad;
  --white: #ffffff;
  --light-bg: #f4f6f9;
  --dark-bg: #0e1130;
  --text: #333333;
  --text-light: #555555;
  --text-muted: #777777;
  --border: #e0e0e0;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 6px 30px rgba(0,0,0,0.14);
}

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Skip to Content --- */
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--white); padding: 8px 16px;
  z-index: 9999; border-radius: 0 0 4px 4px; font-size: 14px;
}
.skip-link:focus { top: 0; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  background: var(--nav-blue);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  position: sticky; top: 0; z-index: 1000;
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px;
}

/* --- Logo (Plumbers 911 + City) --- */
.nav-logo {
  display: flex; flex-direction: column; line-height: 1.15;
  text-decoration: none;
}
.nav-logo-brand {
  font-size: 22px; font-weight: 700; color: var(--white);
  letter-spacing: -0.5px;
}
.nav-logo-brand strong { color: var(--accent); }
.nav-logo-city {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.nav-logo-img { height: 52px; width: auto; display: block; }

/* --- Menu --- */
.nav-menu {
  display: flex; align-items: center; gap: 4px;
}
.nav-menu > a, .nav-dropdown > a {
  padding: 10px 14px; font-size: 15px; font-weight: 500;
  color: var(--white); border-radius: 6px; transition: all 0.2s;
  white-space: nowrap;
}
.nav-menu > a:hover, .nav-menu > a.active,
.nav-dropdown > a:hover { color: var(--white); background: rgba(255,255,255,0.15); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' \25BE'; font-size: 10px; opacity: 0.7; }

/* --- Mega Dropdown (3-column) --- */
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--white); box-shadow: var(--shadow-lg);
  border-radius: 0 0 10px 10px; padding: 20px; z-index: 200;
  min-width: 640px; border-top: 3px solid var(--accent);
}
.nav-dropdown:hover .nav-dropdown-menu { display: flex; }
.nav-mega { gap: 20px; }
.nav-mega-col { flex: 1; min-width: 180px; }
.nav-mega-heading {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 8px; margin-top: 14px;
  padding-bottom: 4px; border-bottom: 1px solid var(--border);
}
.nav-mega-col .nav-mega-heading:first-child { margin-top: 0; }
.nav-mega-col a {
  display: block; padding: 6px 10px; font-size: 14px; font-weight: 400;
  color: var(--text); border-radius: 4px; transition: all 0.15s;
}
.nav-mega-col a:hover { background: var(--light-bg); color: var(--accent); }

/* --- CTA Button in Nav --- */
.nav-cta-btn {
  background: var(--accent) !important; color: var(--white) !important;
  padding: 10px 20px !important; border-radius: 6px !important;
  font-weight: 700 !important; white-space: nowrap;
  transition: background 0.2s; font-size: 15px !important;
}
.nav-cta-btn:hover { background: var(--accent-hover) !important; }
.nav-cta-icon { margin-right: 4px; vertical-align: -2px; }

/* --- Hamburger --- */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative; min-height: 500px;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark-bg) center/cover no-repeat;
  text-align: center; color: var(--white); padding: 80px 20px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,31,63,0.80) 0%, rgba(10,31,63,0.70) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-content h1 {
  font-size: 42px; font-weight: 800; margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-content h2 {
  font-size: 20px; font-weight: 400; margin-bottom: 28px;
  opacity: 0.92; line-height: 1.5;
}
.hero-content .breadcrumb {
  font-size: 14px; margin-bottom: 16px; opacity: 0.75;
}
.hero-content .breadcrumb a { text-decoration: underline; }
.hero-compact { min-height: 350px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 6px;
  font-size: 16px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; border: none; text-align: center;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-secondary { background: var(--primary); color: var(--white); }
.btn-secondary:hover { background: var(--primary-light); }
.btn-sm { padding: 10px 24px; font-size: 14px; }
.btn-lg { padding: 16px 40px; font-size: 18px; }

/* ============================================
   SECTIONS (General)
   ============================================ */
.section { padding: 70px 20px; }
.section-light { background: var(--light-bg); }
.section-dark { background: var(--dark-bg); color: var(--white); }
.section-title {
  font-size: 32px; font-weight: 700; color: var(--primary);
  margin-bottom: 16px;
}
.section-title.text-center { text-align: center; }
.section-dark .section-title { color: var(--white); }
.section-subtitle {
  font-size: 17px; color: var(--text-light); max-width: 700px;
  margin-bottom: 36px; line-height: 1.7;
}
.section-subtitle.text-center { text-align: center; margin-left: auto; margin-right: auto; }

/* --- Content Prose (for long-form text) --- */
.prose { max-width: 800px; color: var(--text-light); line-height: 1.8; }
.prose p { margin-bottom: 16px; }
.prose h2 { font-size: 26px; color: var(--primary); margin: 36px 0 14px; font-weight: 700; }
.prose h3 { font-size: 20px; color: var(--primary); margin: 28px 0 10px; font-weight: 600; }
.prose ul, .prose ol { margin: 12px 0 16px 24px; }
.prose ul li { list-style: disc; margin-bottom: 6px; }
.prose ol li { list-style: decimal; margin-bottom: 6px; }
.prose strong { color: var(--text); }
.prose a,
.service-stack-item a,
.city-context-box a,
.price-disclaimer a,
.faq-answer a,
.info-box a {
  color: var(--accent); text-decoration: underline;
}
.prose a:hover,
.service-stack-item a:hover,
.city-context-box a:hover,
.price-disclaimer a:hover,
.faq-answer a:hover,
.info-box a:hover {
  color: var(--accent-dark);
}
.prose-wide { max-width: 900px; }

/* ============================================
   SERVICES GRID (Homepage)
   ============================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px; margin-top: 30px;
}
.service-card {
  background: var(--white); border-radius: 10px;
  box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s;
  padding: 28px 24px; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-icon {
  font-size: 28px; color: var(--accent);
  margin-bottom: 14px;
}
.service-card h3 { font-size: 17px; color: var(--primary); margin-bottom: 10px; font-weight: 700; }
.service-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; flex-grow: 1; }
.service-card .btn { align-self: flex-start; margin-top: auto; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--primary); color: var(--white);
  text-align: center; padding: 55px 20px;
}
.cta-banner h2 { font-size: 30px; margin-bottom: 12px; }
.cta-banner p { font-size: 17px; opacity: 0.9; margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner-accent { background: var(--accent); }
.cta-banner-accent .btn-outline:hover { color: var(--accent-dark); }

/* ============================================
   ABOUT / TWO-COLUMN SECTION
   ============================================ */
.split-row {
  display: flex; gap: 40px; align-items: center; flex-wrap: wrap;
}
.split-row-reverse { flex-direction: row-reverse; }
.split-img {
  flex: 1 1 360px; border-radius: 10px; overflow: hidden;
  min-height: 320px; background: var(--border);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-text { flex: 1 1 420px; }
.split-text h2 { font-size: 28px; color: var(--primary); margin-bottom: 16px; }
.split-text p { margin-bottom: 14px; color: var(--text-light); line-height: 1.7; }

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */
.service-intro { max-width: 900px; }
.service-sub-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px; margin: 30px 0;
}
.service-sub-card {
  background: var(--white); border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.2s;
}
.service-sub-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-sub-card-img {
  width: 100%; height: 200px; object-fit: cover; background: var(--border);
}
.service-sub-card-body { padding: 22px; }
.service-sub-card-body h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
.service-sub-card-body p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* --- Signs / Process / Info Lists --- */
.info-columns {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px; margin: 20px 0;
}
.info-box {
  background: var(--white); border-radius: 10px; padding: 28px;
  box-shadow: var(--shadow);
}
.info-box h3 { font-size: 20px; color: var(--primary); margin-bottom: 14px; }
.info-box ul { margin-left: 18px; }
.info-box ul li { list-style: disc; margin-bottom: 8px; color: var(--text-light); line-height: 1.6; }
.info-box p { color: var(--text-light); line-height: 1.7; margin-bottom: 10px; }

/* --- Cost Info --- */
.cost-info {
  background: var(--light-bg); border-radius: 10px; padding: 34px;
  text-align: center;
}
.cost-info h3 { font-size: 22px; color: var(--primary); margin-bottom: 10px; }
.cost-info p { color: var(--text-light); margin-bottom: 14px; }

/* --- Related / Other Services --- */
.related-services {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-top: 20px;
}
.related-services a {
  background: var(--white); padding: 10px 22px; border-radius: 6px;
  font-weight: 500; font-size: 14px; color: var(--primary);
  box-shadow: var(--shadow); transition: all 0.2s;
}
.related-services a:hover { background: var(--primary); color: var(--white); }

/* ============================================
   PAGE WITH SIDEBAR LAYOUT
   ============================================ */
.page-with-sidebar {
  display: flex; gap: 0; align-items: flex-start;
  max-width: 1200px; margin: 0 auto; padding: 0 20px 60px;
}
.page-main-col {
  flex: 1 1 0%; min-width: 0;
}
.page-main-col .section {
  padding-left: 0; padding-right: 0;
}
.page-main-col .container {
  max-width: 100%; padding: 0;
}
.services-sidebar {
  width: 280px; flex-shrink: 0;
  position: sticky; top: 90px;
  margin-top: 50px; margin-left: 32px;
}
.sidebar-widget {
  background: var(--white); border-radius: 10px;
  box-shadow: var(--shadow); overflow: hidden;
  margin-bottom: 22px;
}
.sidebar-widget-title {
  background: var(--primary); color: var(--white);
  font-size: 15px; font-weight: 700; padding: 16px 20px;
  text-transform: uppercase; letter-spacing: 0.5px;
  margin: 0;
}
.sidebar-services-list {
  list-style: none; margin: 0; padding: 10px 0;
}
.sidebar-services-list li a {
  display: block; padding: 9px 20px; font-size: 14px;
  color: var(--text); border-bottom: 1px solid var(--border);
  transition: all 0.15s; font-weight: 500;
}
.sidebar-services-list li:last-child a { border-bottom: none; }
.sidebar-services-list li a:hover {
  background: var(--light-bg); color: var(--accent);
  padding-left: 26px;
}
.sidebar-cta-widget {
  background: var(--primary); border-radius: 10px;
  padding: 24px 20px; text-align: center; color: var(--white);
}
.sidebar-cta-widget h4 {
  font-size: 18px; font-weight: 700; margin-bottom: 10px;
}
.sidebar-cta-widget p {
  font-size: 13px; opacity: 0.85; margin-bottom: 18px; line-height: 1.5;
}
.sidebar-call-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: var(--white);
  padding: 13px 16px; border-radius: 6px;
  font-size: 15px; font-weight: 700; margin-bottom: 10px;
  transition: background 0.2s;
}
.sidebar-call-btn:hover { background: var(--accent-hover); }
.sidebar-quote-btn {
  display: block; background: rgba(255,255,255,0.12);
  color: var(--white); border: 1px solid rgba(255,255,255,0.35);
  padding: 11px 16px; border-radius: 6px;
  font-size: 14px; font-weight: 600; transition: all 0.2s;
}
.sidebar-quote-btn:hover { background: rgba(255,255,255,0.22); }
.sidebar-form-widget {
  background: var(--white); border-radius: 10px;
  padding: 20px 16px; margin-top: 16px;
  box-shadow: var(--shadow);
}
.sidebar-form-widget h4 {
  font-size: 16px; font-weight: 700; color: var(--primary);
  margin-bottom: 12px; text-align: center;
}

/* ============================================
   STACKED SERVICE ITEMS (replaces card grid)
   ============================================ */
.service-stack { margin: 30px 0; }
.service-stack-item {
  border-left: 4px solid var(--accent);
  background: var(--white); border-radius: 0 10px 10px 0;
  padding: 28px 30px; margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.service-stack-item h3 {
  font-size: 21px; color: var(--primary);
  margin-bottom: 12px; font-weight: 700;
}
.service-stack-item p {
  color: var(--text-light); line-height: 1.8; margin-bottom: 10px;
  font-size: 15px;
}
.service-stack-item p:last-child { margin-bottom: 0; }
.service-stack-item .item-meta {
  display: inline-block; margin-top: 10px;
  background: var(--light-bg); border-radius: 4px;
  padding: 5px 12px; font-size: 13px; color: var(--text-muted);
}

/* ============================================
   PRICE DISCLAIMER BOX
   ============================================ */
.price-disclaimer {
  background: #fff8e6; border: 1px solid #e6c84a;
  border-left: 5px solid #d4a017;
  border-radius: 0 8px 8px 0; padding: 18px 22px;
  margin: 24px 0; font-size: 14px; color: #6b5500;
  line-height: 1.65;
}
.price-disclaimer strong { color: #4a3800; display: block; margin-bottom: 4px; font-size: 15px; }

/* ============================================
   CITY CONTEXT BOX
   ============================================ */
.city-context-box {
  background: var(--white); border-radius: 10px;
  border-top: 4px solid var(--primary);
  padding: 28px 30px; box-shadow: var(--shadow);
  margin: 30px 0;
}
.city-context-box h3 {
  font-size: 20px; color: var(--primary);
  margin-bottom: 14px; font-weight: 700;
}
.city-context-box p {
  color: var(--text-light); line-height: 1.8; margin-bottom: 12px;
}
.city-context-box p:last-child { margin-bottom: 0; }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: 8px;
  margin-bottom: 10px; overflow: hidden; background: var(--white);
}
.faq-question {
  width: 100%; background: transparent; border: none;
  padding: 18px 24px; font-size: 16px; font-weight: 600;
  color: var(--primary); text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--light-bg); }
.faq-question::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--accent); }
.faq-item.active .faq-question { background: var(--light-bg); }
.faq-item.active .faq-question::after { content: '\2212'; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  padding: 0 24px; color: var(--text-light); line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 500px; padding: 0 24px 20px; }

/* ============================================
   WHY CHOOSE US / FEATURES GRID
   ============================================ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 30px;
}
.features-grid-2col {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; margin-top: 30px;
}
.feature-card {
  text-align: center; padding: 30px 24px;
  background: var(--white); border-radius: 10px; box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.feature-card:hover { transform: translateY(-3px); }
.feature-card .icon { font-size: 36px; margin-bottom: 14px; display: block; }
.feature-card h3 { font-size: 17px; color: var(--primary); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start;
}
.contact-info-card {
  background: var(--white); border-radius: 10px; padding: 32px;
  box-shadow: var(--shadow);
}
.contact-info-card h3 { font-size: 20px; color: var(--primary); margin-bottom: 18px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 18px; font-size: 15px; color: var(--text-light);
}
.contact-info-item .icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.contact-info-item > div { min-width: 0; overflow-wrap: break-word; word-break: break-word; }
.contact-info-item strong { color: var(--text); display: block; margin-bottom: 2px; }
.contact-form-wrap {
  background: var(--white); border-radius: 10px; padding: 32px;
  box-shadow: var(--shadow); min-height: 1150px;
}
.contact-form-wrap h3 { font-size: 20px; color: var(--primary); margin-bottom: 18px; }
.form-placeholder {
  background: var(--light-bg); border: 2px dashed var(--border);
  border-radius: 8px; padding: 40px; text-align: center;
  color: var(--text-muted); min-height: 300px;
  display: flex; align-items: center; justify-content: center;
}
.checklist { margin-top: 14px; }
.checklist li {
  padding: 6px 0 6px 26px; position: relative;
  color: var(--text-light); font-size: 15px;
}
.checklist li::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}

/* ============================================
   PRIVACY POLICY / LEGAL
   ============================================ */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 22px; color: var(--primary); margin: 30px 0 12px; }
.legal-content p { margin-bottom: 14px; color: var(--text-light); line-height: 1.7; }
.legal-content ul { margin: 10px 0 14px 20px; color: var(--text-light); }
.legal-content ul li { margin-bottom: 6px; list-style: disc; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-bg); color: rgba(255,255,255,0.8);
  padding: 50px 20px 24px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px; margin-bottom: 28px;
}
.footer-col h4 {
  color: var(--white); font-size: 16px; margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-col p { margin-bottom: 8px; font-size: 13px; }
.footer-col a {
  display: block; margin-bottom: 7px; font-size: 13px;
  color: rgba(255,255,255,0.65); transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px; text-align: center; font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }

/* ============================================
   STICKY MOBILE CALL BUTTON
   ============================================ */
.mobile-call-btn {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--accent); color: var(--white);
  text-align: center; padding: 16px; font-size: 18px; font-weight: 700;
  z-index: 9999; box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
  text-decoration: none; transition: transform 0.3s, opacity 0.3s;
}
.mobile-call-btn:hover { background: var(--accent-hover); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-menu.active {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--nav-blue); box-shadow: var(--shadow-lg);
    padding: 12px 16px; gap: 2px;
    max-height: 80vh; overflow-y: auto;
  }
  .nav-menu.active > a, .nav-menu.active .nav-dropdown > a { padding: 12px 14px; font-size: 16px; color: var(--white); }
  .nav-dropdown-menu, .nav-mega {
    position: static !important; box-shadow: none !important;
    transform: none !important; display: none !important;
    flex-direction: column !important; min-width: 0 !important;
    padding: 4px 0 4px 0 !important; border-radius: 0 !important;
    gap: 0 !important; background: transparent !important;
    border-top: none !important;
  }
  .nav-dropdown.active .nav-dropdown-menu,
  .nav-dropdown.active .nav-mega { display: flex !important; }
  .nav-mega-col { min-width: 0; border-left: 2px solid rgba(255,255,255,0.2); margin: 0 0 4px 14px; padding-left: 12px; }
  .nav-mega-col a {
    display: block; padding: 9px 10px; font-size: 15px;
    color: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-mega-col a:last-child { border-bottom: none; }
  .nav-mega-col a:hover { background: rgba(255,255,255,0.1); color: var(--white); border-radius: 4px; }
  .nav-mega-heading {
    font-size: 10px; letter-spacing: 1.2px; font-weight: 700;
    color: rgba(255,255,255,0.45); text-transform: uppercase;
    padding: 10px 10px 4px; margin: 0; border-bottom: none;
    display: block;
  }
  .nav-mega-col .nav-mega-heading:first-child { padding-top: 4px; }
  .nav-toggle { display: flex; }
  .nav-cta-btn { display: none !important; }
  .nav-logo-img { height: 44px; }
  .mobile-call-btn { display: block; }
}

@media (max-width: 1024px) {
  .footer { padding-bottom: 80px; }
}

@media (max-width: 1024px) {
  .page-with-sidebar { flex-direction: column; padding: 0; }
  .services-sidebar {
    width: 100%; position: static;
    margin-left: 0; margin-top: 0; padding: 0 20px 30px;
  }
  .page-main-col .section { padding-left: 20px; padding-right: 20px; }
  .page-main-col .container { padding: 0; }
}

@media (max-width: 768px) {
  .hero { min-height: 380px; padding: 60px 16px; }
  .hero-content h1 { font-size: 28px; }
  .hero-content h2 { font-size: 17px; }
  .hero-compact { min-height: 280px; }
  .section { padding: 50px 16px; }
  .section-title { font-size: 24px; }
  .split-row, .split-row-reverse { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 16px; min-height: 1600px; }
  .lc-form-iframe { height: 1600px !important; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
  .service-card-img { height: 140px; }
  .cta-banner h2 { font-size: 22px; }
  .cta-banner p { font-size: 15px; }
  .info-columns { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-sub-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .features-grid-2col { grid-template-columns: 1fr; }
}

/* ============================================
   PLACEHOLDER IMAGES (temporary)
   ============================================ */
.placeholder-img {
  background: linear-gradient(135deg, #c8d6e5 0%, #a4b6c9 100%);
  display: flex; align-items: center; justify-content: center;
  color: #5a6d7e; font-size: 13px; font-weight: 500;
  text-align: center; padding: 10px;
}
