/* ============================================================
   MERCADO PAINTING — MAIN STYLESHEET
   Milwaukee's Professional Painting Company
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --navy:        #0c1f4a;
  --navy-mid:    #1a3a6b;
  --navy-dark:   #071435;
  --orange:      #ff6b00;
  --orange-h:    #e05d00;
  --orange-lt:   rgba(255,107,0,0.12);
  --white:       #ffffff;
  --off-white:   #f7f8fc;
  --lt-gray:     #e8ecf2;
  --text:        #1a1a2e;
  --text-muted:  #5a6a8a;
  --border:      #dde3ef;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.18);
  --r:           8px;
  --r-lg:        16px;
  --t:           all 0.28s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); line-height: 1.65; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; line-height: 1.15; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 20px; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r); font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 700; cursor: pointer; transition: var(--t);
  border: 2px solid transparent; white-space: nowrap; text-align: center;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-h); border-color: var(--orange-h); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,107,0,0.35); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.btn-outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-white { background: var(--white); color: var(--orange); border-color: var(--white); }
.btn-white:hover { background: #f0f0f0; }
.btn-lg { padding: 16px 34px; font-size: 17px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-block { width: 100%; }

/* ── HEADER ───────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 900;
  background: var(--navy-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 10px 20px; max-width: 1300px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { height: 64px; width: auto; border-radius: 8px; }
.logo-name { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name strong { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 900; color: #fff; letter-spacing: 0.01em; }
.logo-name em { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; font-style: normal; color: var(--orange); letter-spacing: 0.12em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  color: rgba(255,255,255,0.82); font-size: 14.5px; font-weight: 600;
  padding: 8px 13px; border-radius: var(--r); transition: var(--t);
  display: flex; align-items: center; gap: 4px; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-link svg { width: 12px; height: 12px; transition: transform 0.2s; }

.dropdown { position: relative; }
.dropdown:hover .nav-link svg { transform: rotate(180deg); }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  min-width: 230px; padding: 8px; z-index: 200; border: 1px solid var(--lt-gray);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 14px; color: var(--text); font-size: 14px;
  font-weight: 500; border-radius: var(--r); transition: var(--t);
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--orange); padding-left: 20px; }
.dropdown-menu .divider { height: 1px; background: var(--lt-gray); margin: 6px 0; }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone {
  color: var(--white); font-size: 16px; font-weight: 700; display: flex;
  align-items: center; gap: 6px; white-space: nowrap;
}
.header-phone svg { width: 18px; height: 18px; color: var(--orange); }
.header-phone:hover { color: var(--orange); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: var(--t); }

/* ── MOBILE MENU ────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 950;
  background: var(--navy-dark); flex-direction: column;
  padding: 80px 28px 40px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute; top: 14px; right: 20px; background: none; border: none;
  color: var(--white); font-size: 30px; cursor: pointer; padding: 4px 10px; line-height: 1;
}
.mob-link {
  display: block; color: rgba(255,255,255,0.85); font-size: 17px; font-weight: 600;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); transition: var(--t);
}
.mob-link:hover { color: var(--orange); padding-left: 6px; }
.mob-section-label {
  color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 22px; margin-bottom: 4px;
}
.mob-sublink {
  display: block; color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 500;
  padding: 9px 0 9px 14px; border-bottom: 1px solid rgba(255,255,255,0.05); transition: var(--t);
}
.mob-sublink:hover { color: var(--orange); }
.mob-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.mob-phone { color: var(--white); font-size: 22px; font-weight: 800; text-align: center; margin-top: 8px; }

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 55%, #1e3d7a 100%);
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('../Gallery/481035431_1173677681424085_4984121614290725025_n.jpg');
  background-size: cover; background-position: center; opacity: 0.08;
}
.hero-shapes {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-shapes::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-shapes::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  position: relative; z-index: 2; width: 100%; max-width: 1220px;
  margin: 0 auto; padding: 80px 20px;
  display: grid; grid-template-columns: 1fr 400px; align-items: center; gap: 50px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,0,0.15); border: 1px solid rgba(255,107,0,0.3);
  color: #ffaa66; font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 30px; margin-bottom: 18px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-text h1 {
  font-size: clamp(36px, 5vw, 68px); font-weight: 900;
  color: var(--white); margin-bottom: 22px;
}
.hero-text h1 em { color: var(--orange); font-style: normal; }
.hero-text p {
  font-size: clamp(16px, 1.8vw, 19px); color: rgba(255,255,255,0.8);
  max-width: 580px; margin-bottom: 36px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.65); font-size: 13px; font-weight: 500; }
.hero-trust-item svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }
.hero-painter { filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5)); }

/* ── TRUST BAR ────────────────────────────────── */
.trust-bar { background: var(--orange); padding: 15px 20px; }
.trust-bar-inner {
  max-width: 1220px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--white); font-size: 14px; font-weight: 700; white-space: nowrap; }
.trust-item svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── SECTIONS ─────────────────────────────────── */
section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 55px; }
.tag {
  display: inline-block; background: var(--orange-lt); color: var(--orange);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 20px; margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; color: var(--navy-dark); margin-bottom: 14px; }
.section-header p { font-size: 16.5px; color: var(--text-muted); max-width: 580px; margin: 0 auto; }

/* ── SERVICES ─────────────────────────────────── */
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.service-card {
  background: var(--white); border-radius: var(--r-lg); padding: 30px 26px;
  box-shadow: var(--shadow-sm); transition: var(--t);
  border-bottom: 3px solid transparent; cursor: default;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-bottom-color: var(--orange); }
.svc-icon {
  width: 58px; height: 58px; background: var(--orange-lt); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.svc-icon svg { width: 28px; height: 28px; color: var(--orange); }
.service-card h3 { font-size: 19px; font-weight: 800; color: var(--navy-dark); margin-bottom: 9px; }
.service-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.7; margin-bottom: 18px; }
.svc-link {
  color: var(--orange); font-weight: 700; font-size: 13.5px;
  display: inline-flex; align-items: center; gap: 5px; transition: var(--t);
}
.svc-link:hover { gap: 9px; }
.svc-link svg { width: 14px; height: 14px; }

/* ── WHY CHOOSE US ────────────────────────────── */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-img-wrap { position: relative; }
.why-img-wrap img { border-radius: var(--r-lg); width: 100%; object-fit: cover; max-height: 480px; }
.why-float-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--orange); color: var(--white); border-radius: var(--r-lg);
  padding: 20px 24px; text-align: center; box-shadow: var(--shadow-md);
}
.why-float-badge .big { font-size: 38px; font-weight: 900; font-family: 'Montserrat', sans-serif; line-height: 1; }
.why-float-badge .sm { font-size: 12px; font-weight: 600; margin-top: 4px; }
.why-text { }
.why-text h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 900; color: var(--navy-dark); margin-bottom: 14px; }
.why-text > p { color: var(--text-muted); font-size: 16px; margin-bottom: 28px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-icon { width: 44px; height: 44px; background: var(--orange-lt); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon svg { width: 22px; height: 22px; color: var(--orange); }
.why-item h4 { font-size: 15.5px; font-weight: 700; color: var(--navy-dark); margin-bottom: 3px; }
.why-item p { font-size: 13.5px; color: var(--text-muted); }

/* ── GALLERY ──────────────────────────────────── */
.gallery-section { background: var(--off-white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid.full { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.g-item { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-overlay {
  position: absolute; inset: 0; background: rgba(7,20,53,0);
  display: flex; align-items: center; justify-content: center; transition: var(--t);
}
.g-overlay svg { color: var(--white); width: 40px; height: 40px; opacity: 0; transition: var(--t); }
.g-item:hover .g-overlay { background: rgba(7,20,53,0.35); }
.g-item:hover .g-overlay svg { opacity: 1; }

/* ── TESTIMONIALS ─────────────────────────────── */
.testimonials-section { background: var(--navy-dark); }
.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-header p { color: rgba(255,255,255,0.65); }
.testimonials-section .tag { background: rgba(255,107,0,0.2); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.review-card {
  background: rgba(255,255,255,0.06); border-radius: var(--r-lg); padding: 28px;
  border: 1px solid rgba(255,255,255,0.1); transition: var(--t);
}
.review-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 18px; height: 18px; color: #fbbf24; fill: #fbbf24; }
.review-text { font-size: 14.5px; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: var(--white); flex-shrink: 0; font-family: 'Montserrat', sans-serif; }
.author-name { font-size: 14.5px; font-weight: 700; color: var(--white); }
.author-loc { font-size: 12.5px; color: rgba(255,255,255,0.5); }

/* ── SERVICE AREAS ────────────────────────────── */
.areas-section { background: var(--white); }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 12px; }
.area-card {
  display: flex; align-items: center; gap: 9px; padding: 13px 16px;
  background: var(--off-white); border-radius: var(--r); border: 1px solid var(--border);
  color: var(--navy-dark); font-size: 14px; font-weight: 600; transition: var(--t);
}
.area-card svg { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }
.area-card:hover { background: var(--navy-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.area-card:hover svg { color: var(--orange); }

/* ── CTA BANNER ───────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #e85d00 0%, var(--orange) 50%, #ff8c00 100%);
  padding: 80px 20px; text-align: center;
}
.cta-banner h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 900; color: var(--white); margin-bottom: 14px; }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────────── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.5fr; gap: 40px;
  max-width: 1220px; margin: 0 auto; padding: 0 20px 55px;
}
.footer-brand img { height: 58px; border-radius: 8px; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; line-height: 1.75; max-width: 260px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; transition: var(--t);
}
.social-btn:hover { background: var(--orange); }
.social-btn svg { width: 18px; height: 18px; color: var(--white); }
.footer-col h4 {
  color: var(--white); font-size: 14.5px; font-weight: 700; margin-bottom: 18px;
  padding-bottom: 10px; border-bottom: 2px solid var(--orange); display: inline-block;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 13.5px; transition: var(--t); }
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-row svg { width: 17px; height: 17px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-row span { font-size: 13.5px; line-height: 1.55; }
.footer-contact-row a { color: rgba(255,255,255,0.7); transition: var(--t); }
.footer-contact-row a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: gap; gap: 10px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--t); font-size: 12.5px; }
.footer-bottom a:hover { color: var(--orange); }

/* ── PAGE HERO (inner pages) ─────────────────── */
.page-hero {
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 60%, #1e3d7a 100%);
  padding: 70px 20px; text-align: center; color: var(--white); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -200px; right: -200px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 65%); border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(28px, 4vw, 50px); font-weight: 900; margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.78); max-width: 620px; margin: 0 auto 22px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--t); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── SERVICE PAGE LAYOUT ──────────────────────── */
.service-layout { display: grid; grid-template-columns: 1fr 360px; gap: 44px; align-items: start; }
.service-body h2 { font-size: 26px; font-weight: 800; color: var(--navy-dark); margin: 36px 0 12px; }
.service-body h2:first-child { margin-top: 0; }
.service-body p { color: var(--text-muted); font-size: 15.5px; line-height: 1.8; margin-bottom: 16px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-muted); font-size: 15px; border-bottom: 1px solid var(--lt-gray); padding-bottom: 10px; }
.check-list li::before { content: ''; display: block; width: 20px; height: 20px; background: var(--orange-lt) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ff6b00'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/%3E%3C/svg%3E") center/14px no-repeat; border-radius: 5px; flex-shrink: 0; margin-top: 1px; }
.sidebar-sticky { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--white); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-md); border-top: 4px solid var(--orange); }
.sidebar-card h3 { font-size: 17.5px; font-weight: 800; color: var(--navy-dark); margin-bottom: 18px; }
.sidebar-card .btn { margin-bottom: 10px; }
.service-intro-img { border-radius: var(--r-lg); width: 100%; height: 260px; object-fit: cover; margin-bottom: 28px; }

/* ── AREA PAGE ────────────────────────────────── */
.area-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.area-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.stat-box { background: var(--off-white); border-radius: var(--r); padding: 18px; text-align: center; border-bottom: 3px solid var(--orange); }
.stat-box .num { font-size: 26px; font-weight: 900; color: var(--orange); font-family: 'Montserrat', sans-serif; }
.stat-box .lbl { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.process-steps { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.process-step { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  width: 44px; height: 44px; background: var(--orange); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 900;
  flex-shrink: 0; font-family: 'Montserrat', sans-serif;
}
.step-text h4 { font-size: 16px; font-weight: 700; color: var(--navy-dark); margin-bottom: 5px; }
.step-text p { font-size: 14px; color: var(--text-muted); }

/* ── CONTACT PAGE ─────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--navy-dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 15px; border: 1.5px solid var(--border); border-radius: var(--r);
  font-size: 15px; color: var(--text); font-family: inherit; background: var(--white); transition: var(--t);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}
.contact-info-card { background: var(--navy-dark); border-radius: var(--r-lg); padding: 32px; color: var(--white); }
.contact-info-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 22px; }
.contact-info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.ci-icon { width: 44px; height: 44px; background: rgba(255,107,0,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 20px; height: 20px; color: var(--orange); }
.ci-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; }
.ci-val { font-size: 15px; font-weight: 600; color: var(--white); }
.ci-val a { color: var(--white); transition: var(--t); }
.ci-val a:hover { color: var(--orange); }
.map-embed { border-radius: var(--r-lg); overflow: hidden; margin-top: 24px; }

/* ── ABOUT PAGE ───────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--r-lg); width: 100%; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.value-card { background: var(--off-white); border-radius: var(--r); padding: 20px; border-left: 4px solid var(--orange); }
.value-card h4 { font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
.value-card p { font-size: 13.5px; color: var(--text-muted); }

/* ── GALLERY PAGE ─────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.9); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--r); object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--white); font-size: 36px; cursor: pointer; }

/* ── FACEBOOK HEADER ICON ─────────────────────── */
.fb-icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; background: #1877F2; border-radius: 8px;
  flex-shrink: 0; transition: var(--t);
}
.fb-icon-btn:hover { background: #1464d8; transform: translateY(-1px); }
.fb-icon-btn svg { width: 20px; height: 20px; color: #fff; }

/* ── FLOATING MESSENGER BUTTON ────────────────── */
.messenger-float { position: fixed; bottom: 28px; right: 28px; z-index: 890; }
.messenger-float a {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #0099FF 0%, #A033FF 100%);
  color: #fff; padding: 13px 22px; border-radius: 50px;
  box-shadow: 0 4px 22px rgba(0,153,255,0.45);
  font-weight: 700; font-size: 14px; font-family: 'Montserrat', sans-serif;
  white-space: nowrap; transition: all 0.3s ease;
}
.messenger-float a:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,153,255,0.55); }
.messenger-float svg { flex-shrink: 0; }
@media (max-width: 480px) {
  .messenger-float a span { display: none; }
  .messenger-float a { padding: 14px; border-radius: 50%; }
}

/* ── UTILITY ──────────────────────────────────── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-32 { margin-bottom: 32px; }
.bg-off-white { background: var(--off-white); }
.bg-white { background: var(--white); }
.divider { height: 1px; background: var(--lt-gray); margin: 32px 0; }

/* ── RELATED SERVICES ─────────────────────────── */
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.related-card {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px;
  background: var(--white); border-radius: var(--r); border: 1px solid var(--border);
  transition: var(--t);
}
.related-card:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.related-card svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; }
.related-card span { font-size: 14px; font-weight: 600; color: var(--navy-dark); }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  .nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-painter { max-width: 280px; margin: 0 auto; order: -1; }
  .hero-actions, .hero-trust { justify-content: center; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-float-badge { position: static; display: inline-block; margin-top: 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .sidebar-sticky { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .area-intro-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .header-cta .btn { padding: 9px 16px; font-size: 13px; }
  .area-stats { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .trust-bar-inner { flex-direction: column; gap: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-inner { padding: 60px 20px; }
}
