/* JJ Handyman ATX — Demo Redesign v2.0
   Colors: #036955 (green brand) + #f5ab38 (amber accent)
*/

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:        #036955;
  --brand-dark:   #025244;
  --brand-light:  #e6f3f0;
  --accent:       #f5ab38;
  --accent-dark:  #d4901e;
  --dark:         #111827;
  --mid:          #374151;
  --muted:        #6b7280;
  --border:       #e5e7eb;
  --bg-alt:       #f9fafb;
  --white:        #ffffff;

  --font-head:    'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-w:        1200px;
  --header-h:     72px;
  --radius:       6px;
  --shadow:       0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.14);
  --transition:   .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--mid);
  font-size: 16px;
  line-height: 1.65;
  background: var(--white);
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography helpers ── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--brand);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline-dark:hover {
  background: var(--brand);
  color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
}

/* ── LANGUAGE SWITCH ── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2px;
  overflow: hidden;
}
.lang-opt {
  background: none;
  border: none;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 16px;
  cursor: pointer;
  color: var(--muted);
  transition: var(--transition);
}
.lang-opt.active {
  background: var(--brand);
  color: var(--white);
}
.lang-opt:not(.active):hover { color: var(--brand); }

/* ── HEADER ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo img { height: 44px; width: auto; }
.logo-text {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .04em;
}

/* Main nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
  /* padding-bottom bridges hover gap between link and dropdown */
  padding-bottom: 10px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  padding: 7px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--brand);
  background: var(--brand-light);
}
.nav-link i.chevron { font-size: 10px; transition: transform var(--transition); }
.nav-item:hover .nav-link i.chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%; /* starts right at nav-item bottom; padding-bottom on parent provides visual gap */
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  transition: var(--transition);
}
.nav-dropdown a i.icon {
  width: 18px;
  color: var(--brand);
  flex-shrink: 0;
}
.nav-dropdown a:hover { background: var(--brand-light); color: var(--brand); }

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  transition: color var(--transition);
}
.header-phone i { color: var(--brand); }
.header-phone:hover { color: var(--brand); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  overflow-y: auto;
  max-height: calc(100vh - var(--header-h));
}
.mobile-nav.open { display: block; }
.mobile-nav-inner { padding: 16px 24px 32px; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--mid);
}
.mobile-nav a:hover { color: var(--brand); }
.mobile-nav .mobile-cta { margin-top: 20px; text-align: center; display: block; }
.mobile-lang { display: flex; align-items: center; gap: 8px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-lang span { font-family: var(--font-head); font-size: 12px; color: var(--muted); font-weight: 600; }

/* ── HERO (homepage) ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/SofiaJoelssonDesignHomeRemodelingRenovationInteriorDesign.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(2,40,30,.82) 0%, rgba(2,40,30,.4) 65%, rgba(2,40,30,.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
  width: 100%;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 20px;
  background: rgba(255,255,255,.12);
  padding: 7px 16px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,.2);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 74px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 720px;
}
.hero-title em { font-style: normal; color: var(--accent); }

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.8);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: 11px;
  font-family: var(--font-head);
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  cursor: pointer;
}
.hero-scroll i { font-size: 18px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── INNER PAGE HERO (service pages) ── */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--header-h);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2,40,30,.88) 0%, rgba(2,40,30,.3) 70%, rgba(2,40,30,.1) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 0 48px;
}
.page-hero-content .eyebrow { color: var(--accent); }
.page-hero-content .section-title {
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 10px;
}
.page-hero-content .section-sub { color: rgba(255,255,255,.75); }

/* ── STATS BAR ── */
#stats {
  background: var(--dark);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
}

.stat-item {
  padding: 28px 24px;
  text-align: center;
  background: var(--dark);
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num .accent { color: var(--accent); }

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ── SERVICES ── */
#services { padding: 96px 0; background: var(--white); }

.section-head { margin-bottom: 56px; }
.section-head.centered { text-align: center; }
.section-head.centered .section-sub { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
}

.service-img { height: 200px; overflow: hidden; }
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }

.service-body { padding: 24px; }

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 18px;
  margin-bottom: 14px;
}

.service-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  margin-top: 14px;
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 10px; }

/* ── SERVICE DETAIL PAGE ── */
.service-detail { padding: 80px 0; background: var(--white); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.service-detail-img {
  border-radius: 10px;
  overflow: hidden;
}
.service-detail-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.included-list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.included-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-alt);
  border-radius: 8px;
  border-left: 3px solid var(--brand);
}
.included-item i { color: var(--brand); font-size: 14px; flex-shrink: 0; }
.included-item span { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--dark); }

/* Service benefits row */
.service-benefits {
  padding: 64px 0;
  background: var(--bg-alt);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.benefit-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 22px;
  margin: 0 auto 16px;
}
.benefit-card h4 {
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
}
.benefit-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Service gallery */
.service-gallery { padding: 64px 0; background: var(--white); }
.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 44px;
}
.service-gallery-grid .gallery-item { height: 240px; }

/* ── WHY US ── */
#why { padding: 96px 0; background: var(--bg-alt); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-image { position: relative; border-radius: 10px; overflow: hidden; }
.why-image img { width: 100%; height: 540px; object-fit: cover; }
.why-badge {
  position: absolute;
  bottom: 28px; right: -16px;
  background: var(--brand);
  color: var(--white);
  padding: 18px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.why-badge .num { font-family: var(--font-head); font-size: 36px; font-weight: 800; line-height: 1; }
.why-badge .lbl { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; opacity: .85; margin-top: 4px; }

.why-features { margin-top: 32px; }
.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.why-feature:last-child { border-bottom: none; }
.why-feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 8px;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  font-size: 20px;
}
.why-feature-body h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.why-feature-body p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── PROCESS ── */
#process { padding: 96px 0; background: var(--dark); }
#process .eyebrow    { color: var(--accent); }
#process .section-title { color: var(--white); }
#process .section-sub   { color: rgba(255,255,255,.55); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.process-step {
  position: relative;
  padding: 36px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  transition: background var(--transition);
}
.process-step:hover { background: rgba(255,255,255,.07); }
.step-num { font-family: var(--font-head); font-size: 64px; font-weight: 800; color: rgba(255,255,255,.06); line-height: 1; margin-bottom: 20px; }
.step-icon { width: 52px; height: 52px; border-radius: 10px; background: var(--brand); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 22px; margin-bottom: 20px; }
.step-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-desc  { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ── GALLERY ── */
#gallery { padding: 96px 0; background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 6px;
  margin-top: 52px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}
.gallery-item:first-child { grid-row: 1 / 3; }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,0) 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 22px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--white); }

/* ── TESTIMONIALS ── */
#testimonials { padding: 96px 0; background: var(--bg-alt); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { display: flex; gap: 3px; margin-bottom: 18px; color: var(--accent); font-size: 15px; }
.testimonial-text { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  color: var(--brand); flex-shrink: 0;
}
.author-name     { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--dark); }
.author-location { font-size: 12px; color: var(--muted); }

/* ── CTA BANNER ── */
#cta-banner { position: relative; padding: 80px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-image: url('/images/Hero-Horz-ArchBackyard.jpg'); background-size: cover; background-position: center; }
.cta-bg::after { content: ''; position: absolute; inset: 0; background: rgba(2,40,30,.82); }
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner .section-title { color: var(--white); }
.cta-inner .section-sub   { color: rgba(255,255,255,.72); margin: 0 auto 36px; }
.cta-phone { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 32px; justify-content: center; }
.cta-phone i { color: var(--accent); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── AREAS ── */
#areas { padding: 72px 0; background: var(--white); border-top: 1px solid var(--border); }
.areas-inner { text-align: center; }
.areas-inner .section-sub { margin: 0 auto 32px; }
.areas-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.area-tag {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  padding: 8px 18px; border: 1px solid var(--border); border-radius: 40px; color: var(--mid);
  transition: var(--transition);
}
.area-tag:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }

/* ── FOOTER ── */
#site-footer { background: #0a0e1a; padding: 72px 0 32px; color: rgba(255,255,255,.55); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand .footer-logo img { height: 40px; filter: brightness(0) invert(1); opacity: .8; }
.footer-brand .footer-logo span { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--white); }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 22px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: rgba(255,255,255,.55); transition: var(--transition);
}
.social-links a:hover { background: var(--brand); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  color: var(--white); text-transform: uppercase; letter-spacing: .09em; margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 12px; font-size: 14px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-item i { color: var(--accent); margin-top: 3px; flex-shrink: 0; width: 16px; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 13px;
}
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ── CONTACT MODAL ── */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.65);
  z-index: 1500;
  display: none !important;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex !important; }

.modal-box {
  background: var(--white);
  border-radius: 14px;
  padding: 40px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modal-in .25s ease;
}
@keyframes modal-in {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--bg-alt);
  border: none; border-radius: 6px;
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: var(--transition);
}
.modal-close:hover { background: var(--border); color: var(--dark); }

.modal-title {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 800;
  color: var(--dark); margin-bottom: 6px;
}
.modal-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 12px; font-weight: 700;
  color: var(--dark); margin-bottom: 6px;
  letter-spacing: .04em; text-transform: uppercase;
}
.form-label .req { color: var(--accent); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px; color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(3,105,85,.1); }
.form-control.has-error { border-color: #ef4444; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }

.form-error { font-size: 12px; color: #ef4444; margin-top: 4px; display: none; }
.form-error.show { display: block; }

.form-submit { width: 100%; padding: 15px; font-size: 15px; margin-top: 8px; justify-content: center; }
.form-submit i { font-size: 14px; }

.modal-success {
  text-align: center;
  padding: 20px 0;
  display: none;
}
.modal-success.show { display: block; }
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.modal-success h3 { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.modal-success p  { font-size: 15px; color: var(--muted); margin-bottom: 24px; }

/* ── LIGHTBOX ── */
#lightbox {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  display: none;
  align-items: center; justify-content: center; flex-direction: column;
  gap: 16px;
}
#lightbox.open { display: flex; }
#lightbox .lb-img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 6px; }
#lightbox .lb-caption { color: rgba(255,255,255,.65); font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
#lightbox .lb-close {
  position: absolute; top: 20px; right: 24px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.12); border: none; border-radius: 6px;
  color: #fff; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
#lightbox .lb-close:hover { background: rgba(255,255,255,.24); }

/* ── SCROLL TO TOP ── */
#scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--brand); color: var(--white);
  border: none; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 900;
}
#scroll-top.visible { opacity: 1; pointer-events: auto; }
#scroll-top:hover { transform: translateY(-3px); background: var(--brand-dark); }

/* ── Reveal animations ── */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1060px) {
  .header-nav .nav-link { padding: 7px 9px; font-size: 12.5px; }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .process-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .header-nav, .header-phone, .header-right .btn, .header-right .lang-switch { display: none; }
  .burger { display: flex; }
  #hero { max-height: 700px; }
  .hero-title { font-size: 38px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image img { height: 340px; }
  .why-badge { right: 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-img img { height: 280px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .service-gallery-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { height: 320px; }
  .modal-box { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .service-gallery-grid { grid-template-columns: 1fr; }
}
