/* ============================================================
   THREE BROTHERS COMMERCIAL EQUIPMENT & REPAIRS
   Main Stylesheet
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  --red:          #C41E3A;
  --red-dark:     #9B1830;
  --orange:       #D4500A;
  --gold:         #E8930A;
  --gradient:     linear-gradient(135deg, #C41E3A 0%, #D4500A 50%, #E8930A 100%);
  --gradient-h:   linear-gradient(135deg, #9B1830 0%, #B34008 50%, #C77808 100%);
  --dark:         #111111;
  --dark-2:       #1E1E1E;
  --dark-3:       #2C2C2C;
  --gray:         #666666;
  --gray-lt:      #999999;
  --light:        #F7F7F7;
  --border:       #E8E8E8;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
  --shadow:       0 4px 20px rgba(0,0,0,0.11);
  --shadow-lg:    0 10px 40px rgba(0,0,0,0.16);
  --shadow-red:   0 6px 24px rgba(196,30,58,0.28);
  --radius:       10px;
  --radius-lg:    16px;
  --ease:         all 0.3s ease;
  --max-w:        1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ===== ACCENT BAR ===== */
body::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--gradient);
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section      { padding: 88px 0; }
.section--light { background: var(--light); }
.section--dark  { background: var(--dark); }
.section--grad  { background: var(--gradient); }

.section__header {
  text-align: center;
  margin-bottom: 60px;
}
.section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section--dark .section__tag,
.section--grad .section__tag { color: var(--gold); }

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.section--dark .section__title,
.section--grad .section__title { color: var(--white); }

.section__sub {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.section--dark .section__sub,
.section--grad .section__sub { color: rgba(255,255,255,0.75); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  background: var(--gradient-h);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196,30,58,0.38);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn--outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn--outline-red:hover {
  background: var(--red);
  color: var(--white);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--dark-3);
  transform: translateY(-2px);
}
.btn--lg { padding: 17px 36px; font-size: 1rem; }
.btn svg  { flex-shrink: 0; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow); }

.header__top {
  background: var(--dark-2);
  padding: 9px 0;
}
.header__top .container {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
}
.header__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.75);
  font-size: 0.83rem;
  font-weight: 500;
  transition: var(--ease);
}
.header__phone:hover { color: var(--gold); }
.header__phone svg { fill: var(--orange); flex-shrink: 0; }

.header__main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}

/* ===== LOGO ===== */
.logo { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; text-decoration: none; }
.logo__text { display: flex; flex-direction: column; }
.logo__name-row { display: flex; align-items: center; white-space: nowrap; }
.logo__b-img { height: 2.1rem; width: auto; flex-shrink: 0; display: block; }
.logo__primary {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo__sub {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ===== LANGUAGE TOGGLE ===== */
.nav { display: flex; align-items: center; gap: 4px; }
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}
.lang-sep { color: var(--border); font-size: 0.75rem; user-select: none; }
.lang-btn {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  padding: 5px 8px;
  letter-spacing: 0.08em;
  border-radius: 5px;
  transition: var(--ease);
  font-family: inherit;
  line-height: 1;
}
.lang-btn:hover { color: var(--red); background: rgba(196,30,58,0.06); }
.lang-btn--active { color: var(--red); background: rgba(196,30,58,0.1); }

/* ===== NAV ===== */
.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__list a {
  display: block;
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-3);
  border-radius: 7px;
  transition: var(--ease);
}
.nav__list a:hover,
.nav__list a.active {
  color: var(--red);
  background: rgba(196,30,58,0.07);
}
.nav__cta {
  background: var(--gradient) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-red);
  margin-left: 8px;
}
.nav__cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 20px rgba(196,30,58,0.4) !important;
  background: var(--gradient-h) !important;
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--dark);
  border-radius: 6px;
  transition: var(--ease);
}
.nav__toggle:hover { background: var(--light); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(196,30,58,0.18) 0%, transparent 70%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(196,30,58,0.82) 0%, rgba(17,17,17,0.97) 55%);
}
.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 100px;
}
.hero__content { max-width: 680px; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero__title {
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero__title span {
  background: linear-gradient(135deg, #F5A623, #E8600A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 38px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ===== STATS BAR ===== */
.stats {
  background: var(--gradient);
  padding: 0;
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 36px 24px;
  text-align: center;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.18);
}
.stat:last-child { border-right: none; }
.stat__number {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 7px;
}
.stat__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

/* ===== SERVICE CARDS ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.s-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--ease);
}
.s-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,30,58,0.18);
}
.s-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(196,30,58,0.09), rgba(232,147,10,0.09));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.s-card__icon svg { fill: var(--red); }
.s-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.s-card__text {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.72;
  flex-grow: 1;
  margin-bottom: 28px;
}
.s-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--ease);
}
.s-card__link:hover { gap: 10px; color: var(--orange); }
.s-card__link svg { fill: currentColor; }

/* ===== WHY US ===== */
.why__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why__content {}
.why__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 36px;
}
.why__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__icon svg { fill: var(--white); }
.why__item-body {}
.why__item-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}
.why__item-text {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
}
.why__visual {
  position: relative;
}
.why__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark-3), var(--dark));
}
.why__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why__badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--gradient);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-red);
}
.why__badge-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.why__badge-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

/* ===== CTA BANNER ===== */
.cta-band { padding: 80px 0; background: var(--dark); }
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band__title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  max-width: 520px;
}
.cta-band__title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-band__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ===== AREAS ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.area-tag {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #444;
  transition: var(--ease);
}
.area-tag:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(196,30,58,0.03);
}
.area-tag svg { fill: var(--orange); flex-shrink: 0; }

/* ===== FEATURE CARDS (inner pages) ===== */
.feat-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.feat-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feat-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.feat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,30,58,0.15);
}
.feat-card__icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(196,30,58,0.1), rgba(232,147,10,0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feat-card__icon svg { fill: var(--red); }
.feat-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.feat-card__text {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ===== CHECK LIST ===== */
.check-list { display: flex; flex-direction: column; gap: 13px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: #444;
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 1px;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/13px no-repeat;
  border-radius: 50%;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(196,30,58,0.65) 0%, rgba(17,17,17,0.96) 55%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: rgba(255,255,255,0.25); }
.page-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.page-hero__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  line-height: 1.72;
}

/* ===== CONTACT & FORM ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 26px; }
.c-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.c-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(196,30,58,0.09);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-card__icon svg { fill: var(--red); }
.c-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-lt);
  margin-bottom: 4px;
}
.c-card__val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}
.c-card__val a { color: var(--red); transition: var(--ease); }
.c-card__val a:hover { color: var(--orange); }

.form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-box__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-box__sub {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.83rem;
  font-weight: 600;
  color: #444;
}
.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: var(--ease);
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,30,58,0.1);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #81c784;
  border-radius: var(--radius);
  padding: 14px 20px;
  color: #2e7d32;
  font-size: 0.93rem;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

/* ===== RESOURCE CARDS ===== */
.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}
.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.resource-card__thumb {
  height: 180px;
  background: linear-gradient(135deg, rgba(196,30,58,0.12), rgba(232,147,10,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
}
.resource-card__thumb svg { fill: var(--orange); opacity: 0.5; }
.resource-card__body { padding: 28px; flex-grow: 1; display: flex; flex-direction: column; }
.resource-card__cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.resource-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.resource-card__text {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 20px;
}
.resource-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--ease);
}
.resource-card__link:hover { gap: 10px; }
.resource-card__link svg { fill: currentColor; }

/* ===== LOCATIONS ===== */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.loc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.loc-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.loc-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-card__icon svg { fill: var(--white); }
.loc-card__name { font-size: 1.2rem; font-weight: 800; color: var(--dark); }
.loc-card__phone { font-size: 0.85rem; color: var(--gray); }
.loc-card__phone a { color: var(--red); font-weight: 600; }
.loc-card__details { display: flex; flex-direction: column; gap: 12px; }
.loc-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: #555;
}
.loc-detail svg { fill: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 68px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .logo__sub { color: rgba(255,255,255,0.35); }
.footer__desc {
  margin-top: 18px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer__phones { margin-top: 20px; display: flex; flex-direction: column; gap: 9px; }
.footer__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--ease);
}
.footer__phone:hover { color: var(--gold); }
.footer__phone svg { fill: var(--orange); }
.footer__heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--ease);
}
.footer__links a:hover { color: var(--gold); padding-left: 4px; }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ===== MARQUEE SLIDESHOW ===== */
.marquee-section {
  overflow: hidden;
  background: var(--white);
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  gap: 14px;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}
/* hover pause removed — controlled by JS for touch support */
.marquee-track img {
  height: 130px;
  width: auto;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  filter: brightness(0.92);
  transition: filter 0.3s, transform 0.3s;
}
.marquee-track img:hover { filter: brightness(1.05); transform: scale(1.04); }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== IMAGE STRIP ===== */
.img-strip {
  width: 100%;
  height: 340px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.img-strip:hover img { transform: scale(1.03); }
.img-strip--full { border-radius: 0; box-shadow: none; height: 380px; }
.img-strip__label {
  position: absolute;
  bottom: 24px;
  left: 28px;
  z-index: 2;
  background: rgba(17,17,17,0.72);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
}

/* ===== PHOTO GRID ===== */
.photo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 14px;
}
.photo-grid__item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.photo-grid__item:first-child {
  grid-row: 1 / 3;
}
.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.photo-grid__item:hover img { transform: scale(1.05); }

/* ===== SPLIT VISUAL ===== */
.split-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.split-visual__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-lg);
}
.split-visual__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-visual__content { display: flex; flex-direction: column; gap: 20px; }
.split-visual__content .section__tag { text-align: left; }
.split-visual__content .section__title { text-align: left; }

@media (max-width: 768px) {
  .img-strip { height: 220px; }
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .photo-grid__item:first-child { grid-row: auto; height: 220px; }
  .photo-grid__item { height: 160px; }
  .split-visual { grid-template-columns: 1fr; }
  .split-visual__img { height: 260px; }
}

/* ===== PHOTO STRIP GRID (mobile → horizontal scroll) ===== */
@media (max-width: 660px) {
  .photo-strip-grid {
    display: flex !important;
    overflow-x: auto !important;
    height: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 16px 4px !important;
    gap: 10px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .photo-strip-grid::-webkit-scrollbar { display: none; }
  .photo-strip-grid > div {
    min-width: 240px !important;
    width: 240px !important;
    height: 200px !important;
    flex-shrink: 0;
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats .container          { grid-template-columns: repeat(2, 1fr); }
  .stat                      { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .stat:nth-child(odd)       { border-right: 1px solid rgba(255,255,255,0.18); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  .services__grid         { grid-template-columns: 1fr 1fr; }
  .why__wrap              { grid-template-columns: 1fr; gap: 48px; }
  .why__visual            { display: none; }
  .areas-grid             { grid-template-columns: repeat(3, 1fr); }
  .footer__grid           { grid-template-columns: 1fr 1fr; gap: 36px; }
  .feat-grid-4            { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap           { gap: 40px; }
  .locations-grid         { grid-template-columns: 1fr; max-width: 520px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .header__top { display: none; }

  .nav__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }
  .nav__list.open { display: flex; }
  .nav__cta { margin-left: 0; }
  .nav__toggle { display: flex; }
  .header__main .container { position: relative; }

  .hero { min-height: 520px; }
  .hero__actions { flex-direction: column; }

  .services__grid  { grid-template-columns: 1fr; }
  .feat-grid-2     { grid-template-columns: 1fr; }
  .feat-grid-3     { grid-template-columns: 1fr; }
  .feat-grid-4     { grid-template-columns: 1fr; }
  .areas-grid      { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap    { grid-template-columns: 1fr; }
  .form-grid       { grid-template-columns: 1fr; }

  .cta-band .container {
    flex-direction: column;
    text-align: center;
  }
  .cta-band__btns  { justify-content: center; }

  .footer__grid    { grid-template-columns: 1fr; }
  .footer__bottom  { flex-direction: column; gap: 8px; text-align: center; }

  .form-box { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: 1fr 1fr; }
}
