/* ========================================
   Modern Wall Artisans — Main Stylesheet
   Color Palette:
   - Primary BG: #0B1F3A (dark navy)
   - Secondary BG: #FFFFFF (white)
   - Light sections: #F3F4F6 (light gray)
   - Text on dark: #FFFFFF
   - Text on light: #1F2A44 (navy)
   - Accent: #2563EB (neon blue)
   ======================================== */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1F2A44;
  background: #FFFFFF;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: #2563EB; text-decoration: none; transition: color 0.3s; }
a:hover { color: #1d4ed8; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  line-height: 1.3;
  color: #1F2A44;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === HEADER === */
.site-header {
  background: #0B1F3A;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
}

.header-top a {
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-top a:hover { color: #2563EB; }

.header-top .contact-info {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.logo a {
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo span { color: #2563EB; }

/* === DESKTOP NAVIGATION === */
.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav > li { list-style: none; position: relative; }

.main-nav > li > a {
  color: #FFFFFF;
  padding: 10px 16px;
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s, background 0.3s;
  border-radius: 6px;
}

.main-nav > li > a:hover,
.main-nav > li > a.active {
  color: #2563EB;
  background: rgba(37, 99, 235, 0.1);
}

/* Dropdown arrow */
.main-nav > li.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.3s;
}

.main-nav > li.has-dropdown:hover > a::after {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0B1F3A;
  min-width: 260px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  padding: 8px 0;
  border-top: 2px solid #2563EB;
}

.main-nav > li.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li { opacity: 0; transform: translateX(-10px); }

.main-nav > li.has-dropdown:hover .dropdown-menu li {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animation for dropdown items */
.dropdown-menu li:nth-child(1) { transition: all 0.3s 0.05s; }
.dropdown-menu li:nth-child(2) { transition: all 0.3s 0.1s; }
.dropdown-menu li:nth-child(3) { transition: all 0.3s 0.15s; }
.dropdown-menu li:nth-child(4) { transition: all 0.3s 0.2s; }
.dropdown-menu li:nth-child(5) { transition: all 0.3s 0.25s; }
.dropdown-menu li:nth-child(6) { transition: all 0.3s 0.3s; }
.dropdown-menu li:nth-child(7) { transition: all 0.3s 0.35s; }
.dropdown-menu li:nth-child(8) { transition: all 0.3s 0.4s; }
.dropdown-menu li:nth-child(9) { transition: all 0.3s 0.45s; }
.dropdown-menu li:nth-child(10) { transition: all 0.3s 0.5s; }
.dropdown-menu li:nth-child(11) { transition: all 0.3s 0.55s; }

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  transition: all 0.25s;
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  color: #FFFFFF;
  background: rgba(37, 99, 235, 0.15);
  border-left-color: #2563EB;
  padding-left: 24px;
}

/* === MOBILE MENU === */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #FFFFFF;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
}

.mobile-nav-overlay.active { display: block; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  min-width: 300px;
  height: 100%;
  background: #0B1F3A;
  z-index: 1060;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 0;
}

.mobile-nav.active { right: 0; }

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-header .logo-text {
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.mobile-nav-header .logo-text span { color: #2563EB; }

.mobile-close {
  background: none;
  border: 2px solid rgba(255,255,255,0.3);
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  line-height: 1;
}

.mobile-close:hover {
  background: #2563EB;
  border-color: #2563EB;
}

.mobile-nav-links {
  list-style: none;
  padding: 16px 0;
}

.mobile-nav-links > li { border-bottom: 1px solid rgba(255,255,255,0.06); }

.mobile-nav-links > li > a {
  display: block;
  padding: 14px 24px;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s;
}

.mobile-nav-links > li > a:hover { color: #2563EB; background: rgba(37,99,235,0.1); }

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
}

.mobile-dropdown-toggle .arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: rotate(45deg);
  transition: transform 0.3s;
  margin-right: 4px;
}

.mobile-dropdown-toggle.open .arrow { transform: rotate(-135deg); }

.mobile-submenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(0,0,0,0.2);
}

.mobile-submenu.open { max-height: 600px; }

.mobile-submenu li a {
  display: block;
  padding: 10px 24px 10px 40px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.mobile-submenu li a:hover { color: #2563EB; padding-left: 48px; }

.mobile-nav-contact {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  padding: 8px 0;
  font-size: 0.9rem;
}

.mobile-nav-contact a:hover { color: #2563EB; }

/* === HERO SECTION === */
.hero {
  position: relative;
  background: #0B1F3A;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  color: #FFFFFF;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-content h1 span { color: #2563EB; }

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-badges {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* === FORM === */
.feedback-form-container {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.feedback-form-container h3 {
  color: #0B1F3A;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-form .form-group { margin-bottom: 0; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #F9FAFB;
  color: #1F2A44;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background: #FFFFFF;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
  margin-bottom: 12px;
}

.form-submit { text-align: center; }

.submit-btn {
  background: #2563EB;
  color: #FFFFFF;
  border: none;
  padding: 16px 48px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
  width: 100%;
}

.submit-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
}

#form-success {
  text-align: center;
  padding: 20px;
}

#form-success p {
  color: #059669;
  font-size: 1.1rem;
  font-weight: 600;
}

/* === SECTIONS === */
.section { padding: 80px 0; }
.section-dark { background: #0B1F3A; color: #FFFFFF; }
.section-dark h2, .section-dark h3 { color: #FFFFFF; }
.section-light { background: #F3F4F6; }
.section-white { background: #FFFFFF; }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: #6B7280;
  max-width: 640px;
  margin: 0 auto;
}

.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* === CARDS GRID === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: #FFFFFF;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body { padding: 24px; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 10px; font-weight: 700; }
.card-body p { color: #6B7280; font-size: 0.95rem; margin-bottom: 16px; }

.section-dark .card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.section-dark .card-body h3 { color: #FFFFFF; }
.section-dark .card-body p { color: rgba(255,255,255,0.7); }

/* === CTA BUTTONS === */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563EB;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: #1d4ed8;
  color: #FFFFFF;
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
}

.cta-btn-outline {
  background: transparent;
  border: 2px solid #2563EB;
  color: #2563EB;
  box-shadow: none;
}

.cta-btn-outline:hover {
  background: #2563EB;
  color: #FFFFFF;
}

.cta-btn-white {
  background: #FFFFFF;
  color: #0B1F3A;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cta-btn-white:hover {
  background: #F3F4F6;
  color: #0B1F3A;
  transform: scale(1.04);
}

.cta-block {
  text-align: center;
  padding: 40px 0;
}

.cta-block p {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* === IMAGE + TEXT BLOCKS === */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.split-block.reverse { direction: rtl; }
.split-block.reverse > * { direction: ltr; }

.split-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.split-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.split-text h2 { font-size: 1.8rem; margin-bottom: 16px; font-weight: 800; }
.split-text h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 700; }
.split-text p { margin-bottom: 16px; color: #4B5563; }
.split-text ul { margin: 16px 0; padding-left: 20px; }
.split-text ul li { margin-bottom: 8px; color: #4B5563; }

/* === CONTENT SECTIONS (for service/city pages) === */
.content-section { padding: 60px 0; }

.content-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 800;
  padding-bottom: 12px;
  border-bottom: 3px solid #2563EB;
  display: inline-block;
}

.content-section h3 {
  font-size: 1.3rem;
  margin: 24px 0 12px;
  font-weight: 700;
}

.content-section p { margin-bottom: 16px; color: #4B5563; line-height: 1.8; }

.content-section ul, .content-section ol {
  margin: 16px 0;
  padding-left: 24px;
}

.content-section ul li, .content-section ol li {
  margin-bottom: 10px;
  color: #4B5563;
  line-height: 1.7;
}

.content-section .page-hero-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 32px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid #E5E7EB;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1F2A44;
  transition: background 0.3s;
}

.faq-question:hover { background: #F9FAFB; }

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #2563EB;
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p { color: #4B5563; line-height: 1.8; }

.section-dark .faq-item { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.section-dark .faq-question { color: #FFFFFF; }
.section-dark .faq-answer p { color: rgba(255,255,255,0.8); }

/* === MAP === */
.map-container {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  margin: 24px 0;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* === AREAS GRID === */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.area-card {
  background: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
  font-weight: 600;
  color: #1F2A44;
}

.area-card:hover {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
  color: #2563EB;
}

.section-dark .area-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  color: #FFFFFF;
}

.section-dark .area-card:hover {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.15);
}

/* === NEIGHBORHOODS LIST === */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  margin: 16px 0;
}

.neighborhoods-grid span {
  padding: 8px 12px;
  background: #F3F4F6;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #4B5563;
}

/* === FOOTER === */
.site-footer {
  background: #0B1F3A;
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 12px; }

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: #2563EB; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* === STICKY QUOTE BUTTON === */
.sticky-quote-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #2563EB;
  color: #FFFFFF;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
  z-index: 900;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-quote-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.6);
  background: #1d4ed8;
}

/* === MODAL === */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.active { display: flex; }

.modal-content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  max-width: 520px;
  width: 90%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #F3F4F6;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  transition: all 0.3s;
}

.modal-close:hover { background: #E5E7EB; color: #1F2A44; }

/* === BREADCRUMBS === */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.85rem;
  color: #6B7280;
}

.breadcrumbs a { color: #2563EB; }
.breadcrumbs span { margin: 0 8px; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: #0B1F3A;
  padding: 60px 0 40px;
  text-align: center;
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-list { list-style: none; }

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: #F9FAFB;
  border-radius: 12px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: #2563EB;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 22px; height: 22px; fill: #FFFFFF; }

.contact-info-list li strong {
  display: block;
  font-size: 0.85rem;
  color: #6B7280;
  margin-bottom: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-list li span,
.contact-info-list li a {
  font-size: 1rem;
  color: #1F2A44;
  font-weight: 500;
}

/* === ICON HELPERS === */
.icon-inline {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-content { text-align: center; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-badges { justify-content: center; }
  .split-block { grid-template-columns: 1fr; gap: 24px; }
  .split-block.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .header-top .contact-info { gap: 12px; font-size: 0.78rem; }
  
  .hero { padding: 50px 0 40px; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p { font-size: 1rem; }
  
  .section { padding: 50px 0; }
  .section-header h2 { font-size: 1.7rem; }
  
  .contact-form .form-row { grid-template-columns: 1fr; }
  
  .cards-grid { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  
  .sticky-quote-btn {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    padding: 14px 24px;
    font-size: 0.9rem;
  }
  
  .sticky-quote-btn:hover {
    transform: translateX(50%) scale(1.04);
  }
  
  .page-hero h1 { font-size: 1.8rem; }
  
  .content-section h2 { font-size: 1.5rem; }
  
  .split-img img { height: 250px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.5rem; }
  .header-top { flex-direction: column; gap: 4px; text-align: center; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn 0.5s ease forwards; }

/* === SERVICES LIST (for city pages) === */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.service-link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #F9FAFB;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  color: #1F2A44;
  font-weight: 600;
  transition: all 0.3s;
}

.service-link-card:hover {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.05);
  color: #2563EB;
  transform: translateY(-2px);
}

.service-link-card svg {
  width: 24px;
  height: 24px;
  fill: #2563EB;
  flex-shrink: 0;
}

/* === TRUST BADGES === */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.trust-item {
  text-align: center;
  min-width: 120px;
}

.trust-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #2563EB;
  display: block;
}

.trust-label {
  font-size: 0.85rem;
  color: #6B7280;
  font-weight: 500;
}

.section-dark .trust-label { color: rgba(255,255,255,0.7); }

/* === PROCESS STEPS === */
.process-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.process-steps li {
  counter-increment: step;
  padding: 16px 16px 16px 64px;
  position: relative;
  margin-bottom: 12px;
  background: #F9FAFB;
  border-radius: 12px;
  color: #4B5563;
  line-height: 1.7;
}

.process-steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #2563EB;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* === ABOUT PAGE === */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.value-card {
  padding: 28px;
  background: #F9FAFB;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #E5E7EB;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: #2563EB;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-icon svg { width: 28px; height: 28px; fill: #2563EB; }

.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: #6B7280; }
