/* =============================================
   JS REFORMAS — Industrial Tradesman
   Fonts: Bebas Neue (headlines) + IBM Plex Sans
   Palette: Navy · Orange · White · Steel
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
  --navy:     #0D1B2A;
  --navy-2:   #162336;
  --navy-3:   #1F3049;
  --orange:   #E8620A;
  --orange-2: #C95308;
  --steel:    #E8ECF0;
  --steel-2:  #D0D8E0;
  --white:    #FFFFFF;
  --text:     #1A2633;
  --muted:    #5A6A7A;
  --border:   #CDD5DE;

  --font-head: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'IBM Plex Sans', 'Segoe UI', sans-serif;
  --trans: all .22s ease;
  --shadow: 0 4px 24px rgba(13,27,42,.12);
  --shadow-md: 0 8px 32px rgba(13,27,42,.18);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1,h2,h3,h4 { font-family: var(--font-head); letter-spacing: .02em; line-height: 1.05; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
p  { font-size: .97rem; color: var(--muted); line-height: 1.7; }

.container { max-width: 1220px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 90px 0; }
.section--sm{ padding: 56px 0; }

.stripe-bg {
  background-color: var(--steel);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 20px,
    rgba(13,27,42,.035) 20px, rgba(13,27,42,.035) 40px
  );
}

/* ══ TOP BAR ══ */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  border-bottom: 3px solid var(--orange);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__left { display: flex; gap: 24px; }
.topbar__item { display: flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 13px; height: 13px; color: var(--orange); flex-shrink: 0; }
.topbar__badge {
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
}

/* ══ HEADER ══ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  z-index: 800;
  box-shadow: 0 2px 12px rgba(13,27,42,.08);
}
.nav {
  display: flex;
  align-items: stretch;
  height: 68px;
  position: relative;
}

/* LOGO */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 36px;
  border-right: 2px solid var(--border);
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo-mark {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 2rem;
  letter-spacing: .04em;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.nav__logo-name {
  font-family: var(--font-head);
  font-size: 1.45rem;
  letter-spacing: .06em;
  color: var(--navy);
  line-height: 1;
}
.nav__logo-sub {
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav__links {
  display: flex;
  align-items: stretch;
  flex: 1;
  padding: 0 12px;
}
.nav__item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav__item > a {
  display: flex; align-items: center; gap: 5px;
  padding: 0 16px;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy); height: 100%;
  border-bottom: 3px solid transparent;
  transition: var(--trans);
}
.nav__item > a:hover,
.nav__item > a.active { color: var(--orange); border-bottom-color: var(--orange); }
.nav__item > a svg { width: 12px; height: 12px; transition: transform .2s; }
.nav__item:hover > a svg { transform: rotate(180deg); }

.nav__cta {
  margin-left: auto; align-self: center;
  background: var(--orange); color: var(--white);
  padding: 0 24px; height: 44px;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0; transition: var(--trans);
}
.nav__cta:hover { background: var(--orange-2); }
.nav__cta svg { width: 15px; height: 15px; }

/* ══ MEGA MENU ══ */
.mega-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  box-shadow: var(--shadow-md);
  width: 780px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 900;
}
.nav__item:hover .mega-menu {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu__header {
  background: var(--navy);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.mega-menu__header span { font-family: var(--font-head); font-size: 1rem; letter-spacing: .08em; color: var(--white); }
.mega-menu__header small { font-size: .72rem; color: rgba(255,255,255,.4); }
.mega-menu__grid { display: grid; grid-template-columns: repeat(3,1fr); }
.mega-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 18px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
.mega-item:nth-child(3n) { border-right: none; }
.mega-item:nth-last-child(-n+3) { border-bottom: none; }
.mega-item:hover { background: var(--steel); }
.mega-item:hover .mega-item__name { color: var(--orange); }
.mega-item__icon {
  width: 34px; height: 34px;
  background: var(--steel);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--trans);
}
.mega-item:hover .mega-item__icon { background: var(--orange); }
.mega-item__icon svg { width: 17px; height: 17px; color: var(--navy); transition: var(--trans); }
.mega-item:hover .mega-item__icon svg { color: var(--white); }
.mega-item__name { font-size: .84rem; font-weight: 600; color: var(--navy); transition: var(--trans); line-height: 1.2; }
.mega-item__desc { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.mega-menu__footer {
  background: var(--steel); padding: 11px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
}
.mega-menu__footer p { font-size: .78rem; color: var(--muted); }
.mega-menu__footer a { font-size: .78rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .08em; }

/* ══ HAMBURGER ══ */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; margin-left: auto;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: var(--trans); }
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══ MOBILE NAV ══ */
.nav__mobile {
  position: fixed; inset: 0;
  background: var(--navy); z-index: 999;
  display: flex; flex-direction: column;
  padding: 80px 32px 32px; gap: 4px;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
}
.nav__mobile.open { transform: translateX(0); }
.nav__mobile a {
  font-family: var(--font-head); font-size: 1.6rem;
  color: rgba(255,255,255,.7); letter-spacing: .05em;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--trans); display: block;
}
.nav__mobile a:hover { color: var(--orange); padding-left: 8px; }
.nav__mobile-cta {
  margin-top: 24px;
  background: var(--orange) !important; color: var(--white) !important;
  text-align: center; padding: 16px !important;
  font-size: 1rem !important; border-bottom: none !important;
}
.nav__close {
  position: absolute; top: 20px; right: 24px;
  font-size: 1.8rem; color: rgba(255,255,255,.5) !important;
  cursor: pointer; border-bottom: none !important;
  font-family: var(--font-body) !important; padding: 0 !important;
}

/* Mobile accordion Servicios */
.mob-svc-toggle {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-head); font-size: 1.6rem;
  color: rgba(255,255,255,.7); letter-spacing: .05em;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  cursor: pointer; transition: var(--trans);
  background: none; border-left: none; border-right: none; border-top: none;
  width: 100%; text-align: left;
}
.mob-svc-toggle:hover { color: var(--orange); }
.mob-svc-toggle.open { color: var(--orange); }
.mob-svc-arrow {
  width: 18px; height: 18px; flex-shrink: 0;
  display: inline-block;
  transition: transform .25s ease;
  color: var(--orange);
}
.mob-svc-toggle.open .mob-svc-arrow { transform: rotate(180deg); }
.mob-svc-list {
  display: none; flex-direction: column;
  background: rgba(255,255,255,.04);
  border-left: 3px solid var(--orange);
  margin: 2px 0 4px 0;
}
.mob-svc-list.open { display: flex; }
.mob-svc-list a {
  display: block !important;
  font-family: var(--font-body) !important;
  font-size: .82rem !important;
  font-weight: 600 !important;
  letter-spacing: .07em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.55) !important;
  padding: 11px 16px !important;
  border-bottom: 1px solid rgba(255,255,255,.05) !important;
}
.mob-svc-list a:hover { color: var(--orange) !important; padding-left: 22px !important; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-size: .85rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 30px; cursor: pointer;
  border: 2px solid transparent; transition: var(--trans); line-height: 1;
}
.btn svg { width: 15px; height: 15px; }
.btn--orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--orange:hover { background: var(--orange-2); border-color: var(--orange-2); }
.btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-2); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline-dark:hover { background: var(--navy); color: var(--white); }

/* ══ HERO ══ */
.hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  min-height: 580px; display: flex; align-items: center;
}
.hero__photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: .25;
}
.hero::after {
  content: '';
  position: absolute; right: -60px; top: 0; bottom: 0; width: 42%;
  background: var(--orange);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  opacity: .92;
}
.hero__content {
  position: relative; z-index: 2;
  padding: 80px 0; max-width: 620px;
}
.hero__flag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: var(--white);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 14px; margin-bottom: 24px;
}
.hero h1 { color: var(--white); line-height: 1; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero__sub {
  color: rgba(255,255,255,.7); font-size: 1rem;
  max-width: 480px; margin-bottom: 36px; line-height: 1.7;
}
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ══ TRUST BAND ══ */
.trust-band { background: var(--orange); }
.trust-band__inner { display: grid; grid-template-columns: repeat(6,1fr); }
.trust-item {
  padding: 20px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 22px; height: 22px; color: rgba(255,255,255,.85); }
.trust-item span {
  font-size: .72rem; font-weight: 700; color: var(--white);
  line-height: 1.3; text-align: center;
  text-transform: uppercase; letter-spacing: .04em;
}

/* ══ SECTION HEADERS ══ */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
.section-label::before { content: ''; width: 28px; height: 3px; background: var(--orange); flex-shrink: 0; }
h2.section-title { color: var(--navy); margin-bottom: 12px; }
.section-sub { max-width: 540px; }

/* ══ STATS ══ */
.stats-bar { background: var(--navy-2); border-top: 3px solid var(--orange); }
.stats-bar__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-box {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: var(--trans);
}
.stat-box:last-child { border-right: none; }
.stat-box:hover { background: rgba(232,98,10,.08); }
.stat-box__num { font-family: var(--font-head); font-size: 3.4rem; color: var(--orange); line-height: 1; display: block; }
.stat-box__label { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .12em; margin-top: 6px; display: block; }

/* ══ SERVICES GRID ══ */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; background: var(--steel-2); }
.svc-card {
  background: var(--white); padding: 32px 26px; display: block;
  border-left: 4px solid transparent; transition: var(--trans); position: relative;
}
.svc-card:hover { background: var(--navy); border-left-color: var(--orange); }
.svc-card__icon { width: 44px; height: 44px; background: var(--steel); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: var(--trans); }
.svc-card:hover .svc-card__icon { background: var(--orange); }
.svc-card__icon svg { width: 22px; height: 22px; color: var(--navy); transition: var(--trans); }
.svc-card:hover .svc-card__icon svg { color: var(--white); }
.svc-card__name { font-family: var(--font-head); font-size: 1.25rem; letter-spacing: .03em; color: var(--navy); margin-bottom: 8px; transition: var(--trans); }
.svc-card:hover .svc-card__name { color: var(--white); }
.svc-card__text { font-size: .84rem; color: var(--muted); line-height: 1.6; transition: var(--trans); }
.svc-card:hover .svc-card__text { color: rgba(255,255,255,.55); }
.svc-card__arrow { margin-top: 18px; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 6px; transition: var(--trans); }
.svc-card:hover .svc-card__arrow { gap: 10px; }

/* ══ WHY US ══ */
.whyus { background: var(--steel); }
.whyus__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.whyus__img-wrap { position: relative; }
.whyus__img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.whyus__years {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--orange); color: var(--white);
  padding: 24px 28px; text-align: center;
}
.whyus__years strong { font-family: var(--font-head); font-size: 3.5rem; display: block; line-height: 1; }
.whyus__years span { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.whyus__list { margin-top: 32px; display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }
.whyus__item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
  background: var(--white); transition: var(--trans);
}
.whyus__item:last-child { border-bottom: none; }
.whyus__item:hover { background: var(--navy); }
.whyus__item:hover .whyus__item-title,
.whyus__item:hover .whyus__item-text { color: rgba(255,255,255,.85); }
.whyus__item-num { font-family: var(--font-head); font-size: 1.6rem; color: var(--orange); line-height: 1; min-width: 32px; flex-shrink: 0; }
.whyus__item-title { font-weight: 700; font-size: .92rem; color: var(--navy); text-transform: uppercase; letter-spacing: .04em; transition: var(--trans); }
.whyus__item-text { font-size: .84rem; color: var(--muted); margin-top: 3px; transition: var(--trans); }

/* ══ PROCESS ══ */
.process { background: var(--navy); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; margin-top: 48px; background: rgba(255,255,255,.06); }
.process-step { background: var(--navy-2); padding: 36px 28px; position: relative; border-top: 3px solid transparent; transition: var(--trans); }
.process-step:hover { background: var(--navy-3); border-top-color: var(--orange); }
.process-step__num { font-family: var(--font-head); font-size: 4rem; color: rgba(232,98,10,.2); line-height: 1; position: absolute; top: 20px; right: 20px; }
.process-step__icon { width: 44px; height: 44px; background: var(--orange); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.process-step__icon svg { width: 22px; height: 22px; color: var(--white); }
.process-step h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--white); margin-bottom: 12px; }
.process-step p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ══ GALLERY PREVIEW ══ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-template-rows: 240px 240px;
  gap: 4px;
}
.gal-item { overflow: hidden; position: relative; cursor: pointer; }
.gal-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gal-item:nth-child(2) { grid-column: span 4; }
.gal-item:nth-child(3) { grid-column: span 3; }
.gal-item:nth-child(4) { grid-column: span 3; }
.gal-item:nth-child(5) { grid-column: span 4; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gal-item:hover img { transform: scale(1.05); }
.gal-item__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--orange); color: var(--white);
  padding: 8px 14px; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  transform: translateY(100%); transition: var(--trans);
}
.gal-item:hover .gal-item__label { transform: translateY(0); }

/* ══ TESTIMONIALS ══ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; background: var(--steel-2); }
.testi-card { background: var(--white); padding: 36px 32px; border-top: 4px solid transparent; transition: var(--trans); }
.testi-card:hover { border-top-color: var(--orange); }
.testi-stars { color: var(--orange); font-size: 1rem; margin-bottom: 16px; }
.testi-text { font-size: .92rem; color: var(--text); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; background: var(--navy); color: var(--white); font-family: var(--font-head); font-size: 1.3rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testi-loc { font-size: .78rem; color: var(--muted); }

/* ══ CTA BAND ══ */
.cta-band { background: var(--orange); padding: 64px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.8); margin-top: 8px; }
.cta-band__right { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ══ FOOTER ══ */
.site-footer { background: var(--navy); border-top: 4px solid var(--orange); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { font-family: var(--font-head); font-size: 1.6rem; color: var(--white); margin-bottom: 6px; letter-spacing: .04em; }
.footer-logo span { color: var(--orange); }
.footer-logo-sub { font-size: .65rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.footer-about { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--font-body); }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.45); transition: var(--trans); display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-col ul li a::before { content: '›'; color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.fc-item { display: flex; gap: 12px; align-items: flex-start; }
.fc-item svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.fc-item span, .fc-item a { font-size: .88rem; color: rgba(255,255,255,.5); transition: var(--trans); }
.fc-item a:hover { color: var(--orange); }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: .78rem; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,.3); transition: var(--trans); }
.footer-bottom a:hover { color: var(--orange); }

/* ══ PAGE HERO ══ */
.page-hero { background: var(--navy); padding: 52px 0 48px; border-bottom: 4px solid var(--orange); }
.breadcrumb { display: flex; gap: 6px; align-items: center; font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.4); transition: var(--trans); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }
.page-hero h1 { color: var(--white); max-width: 680px; }
.page-hero p { color: rgba(255,255,255,.6); max-width: 520px; margin-top: 16px; }

/* ══ SERVICE PAGE ══ */
.svc-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.svc-intro__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.price-dur-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 4px; background: var(--steel-2); }
.price-dur-item { background: var(--navy); padding: 22px 20px; text-align: center; }
.price-dur-item .val { font-family: var(--font-head); font-size: 1.6rem; color: var(--orange); letter-spacing: .02em; display: block; line-height: 1; }
.price-dur-item .lab { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.35); margin-top: 5px; display: block; }
.checklist { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--text); }
.checklist li::before { content: '✓'; background: var(--orange); color: var(--white); width: 20px; height: 20px; font-size: .7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; background: var(--steel-2); }
.feat-item { background: var(--white); padding: 32px 28px; border-left: 3px solid transparent; transition: var(--trans); }
.feat-item:hover { background: var(--navy); border-left-color: var(--orange); }
.feat-item__num { font-family: var(--font-head); font-size: 1.1rem; color: var(--orange); margin-bottom: 12px; }
.feat-item__title { font-weight: 700; color: var(--navy); font-size: .95rem; margin-bottom: 8px; transition: var(--trans); }
.feat-item:hover .feat-item__title { color: var(--white); }
.feat-item__text { font-size: .84rem; color: var(--muted); transition: var(--trans); }
.feat-item:hover .feat-item__text { color: rgba(255,255,255,.5); }

.related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; background: var(--steel-2); }
.rel-card { background: var(--white); padding: 28px 22px; display: block; text-align: center; transition: var(--trans); }
.rel-card:hover { background: var(--orange); }
.rel-card svg { width: 28px; height: 28px; color: var(--orange); margin: 0 auto 12px; transition: var(--trans); }
.rel-card:hover svg { color: var(--white); }
.rel-card h4 { font-family: var(--font-head); font-size: 1rem; color: var(--navy); transition: var(--trans); }
.rel-card:hover h4 { color: var(--white); }

/* ══ GALLERY PAGE ══ */
.filter-bar { display: flex; gap: 3px; flex-wrap: wrap; margin-bottom: 32px; background: var(--steel-2); padding: 3px; }
.f-btn { padding: 10px 22px; font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--white); border: none; color: var(--muted); cursor: pointer; transition: var(--trans); }
.f-btn:hover, .f-btn.active { background: var(--orange); color: var(--white); }
.gallery-full { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; background: var(--steel-2); }
.gf-item { overflow: hidden; position: relative; aspect-ratio: 4/3; cursor: pointer; }
.gf-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gf-item:hover img { transform: scale(1.05); }
.gf-info { position: absolute; inset: 0; background: rgba(13,27,42,.75); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: var(--trans); gap: 6px; padding: 20px; }
.gf-item:hover .gf-info { opacity: 1; }
.gf-info h4 { font-family: var(--font-head); font-size: 1.3rem; color: var(--white); text-align: center; }
.gf-info span { font-size: .72rem; font-weight: 700; color: var(--orange); letter-spacing: .12em; text-transform: uppercase; }

/* ══ CONTACT ══ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; }
.contact-info-col { background: var(--navy-2); padding: 72px 52px; }
.contact-info-col .section-label { color: var(--orange); }
.contact-info-col .section-label::before { background: var(--orange); }
.contact-info-col h2 { color: var(--white); margin-bottom: 12px; }
.contact-info-col > p { color: rgba(255,255,255,.55); margin-bottom: 44px; }
.c-detail { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px; }
.c-detail__icon { width: 44px; height: 44px; background: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-detail__icon svg { width: 20px; height: 20px; color: var(--white); }
.c-detail h4 { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; font-family: var(--font-body); }
.c-detail p { font-size: .92rem; color: rgba(255,255,255,.6); }
.zones { margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); }
.zones h4 { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; font-family: var(--font-body); }
.zones-list { display: flex; flex-wrap: wrap; gap: 6px; }
.zone-tag { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); padding: 5px 12px; font-size: .76rem; color: rgba(255,255,255,.5); }
.contact-form-col { background: var(--white); padding: 72px 52px; }
.contact-form-col h3 { font-family: var(--font-head); font-size: 1.8rem; color: var(--navy); margin-bottom: 8px; }
.contact-form-col > p { margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea { background: var(--steel); border: 2px solid var(--border); border-left: 4px solid var(--border); padding: 12px 16px; font-family: var(--font-body); font-size: .92rem; color: var(--text); transition: var(--trans); resize: none; outline: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); border-left-color: var(--orange); background: var(--white); }
.captcha-row { flex-direction: row !important; align-items: center; flex-wrap: wrap; gap: 10px; }
.captcha-row label { width: 100%; flex: 0 0 100%; margin-bottom: 0; }
.captcha-row input[type=number] { width: 120px; flex: 0 0 120px; }
.captcha-row button { flex: 0 0 auto; background: none !important; border: none !important; cursor: pointer; padding: 4px 6px; color: var(--orange); display: flex; align-items: center; }

/* ══ REVEAL ══ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .trust-band__inner { grid-template-columns: repeat(3,1fr); }
  .trust-item:nth-child(3) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .whyus__inner, .svc-intro, .contact-layout { grid-template-columns: 1fr; gap: 0; }
  .contact-info-col, .contact-form-col { padding: 52px 32px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item { grid-column: span 1 !important; grid-row: span 1 !important; aspect-ratio: 4/3; }
  .gallery-full { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .related-grid { grid-template-columns: repeat(2,1fr); }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .whyus__years { right: 0; bottom: -16px; }
}
@media (max-width: 768px) {
  .topbar { margin-bottom: 8px; }
  .topbar__left { display: none; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav {
    justify-content: space-between;
    padding: 0 4px;
  }
  .nav__logo {
    border-right: none;
    padding-right: 0;
  }
  .nav__burger { margin-left: auto; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2,1fr); }
  .stat-box:nth-child(2) { border-right: none; }
  .trust-band__inner { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .cta-band__inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mega-menu { display: none; }
  .hero::after { display: none; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-full { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2,1fr); }
  .feat-grid { grid-template-columns: 1fr; }
  .contact-stats-grid { grid-template-columns: repeat(2,1fr) !important; }
  .contact-info-col, .contact-form-col { padding: 36px 20px; }
}
