/* =============================================
   ROBERTS REMODELING — COMMERCIAL REDESIGN
   ============================================= */

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

:root {
  --gold:      #C9960C;
  --gold-lt:   #E6AE1A;
  --gold-pale: #FDF3DC;
  --black:     #0D0D0D;
  --dark:      #161616;
  --charcoal:  #242424;
  --mid:       #444444;
  --muted:     #777777;
  --border:    #E5E5E5;
  --light:     #F7F7F7;
  --white:     #FFFFFF;

  --nav-h:   72px;
  --top-h:   38px;
  --total-h: calc(var(--nav-h) + var(--top-h));

  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --t: 0.22s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--mid); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }

/* =============================================
   TYPOGRAPHY HELPERS
   ============================================= */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  color: var(--black);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }

.btn-lg { padding: 15px 32px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-block { display: flex; width: 100%; justify-content: center; margin-top: 8px; }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,150,12,0.30);
}
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); box-shadow: 0 6px 24px rgba(201,150,12,0.40); }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover { background: var(--charcoal); border-color: var(--charcoal); }

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

/* =============================================
   LOGO
   ============================================= */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  display: flex;
  align-items: flex-end;
}
.lm-r1 { color: var(--black); }
.lm-r2 { color: var(--gold); margin-left: -5px; font-size: 2rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--black);
}
.logo-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: var(--black);
  height: var(--top-h);
  display: flex;
  align-items: center;
}
.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}
.topbar-left, .topbar-right { display: flex; gap: 24px; align-items: center; }
.topbar-left span, .topbar-right a {
  display: flex; align-items: center; gap: 6px;
  transition: color var(--t);
}
.topbar-left i, .topbar-right i { color: var(--gold); font-size: 0.72rem; }
.topbar-right a:hover { color: var(--white); }
.topbar-phone {
  background: var(--gold);
  color: var(--white) !important;
  padding: 4px 14px;
  border-radius: var(--r-sm);
  font-weight: 700;
}
.topbar-phone:hover { background: var(--gold-lt) !important; }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow var(--t);
}
#navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.10); }

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; list-style: none; gap: 4px; }
.main-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mid);
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
  letter-spacing: 0.01em;
}
.main-nav a:hover { color: var(--black); background: var(--light); }
.main-nav a.active { color: var(--gold); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--t); }

.mobile-nav {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 28px 24px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  z-index: 800;
}
.mobile-nav ul { list-style: none; }
.mobile-nav li { border-bottom: 1px solid var(--border); }
.mobile-nav a {
  display: block;
  padding: 13px 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
}
.mobile-nav.open { display: block; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.22;
}

.hero-body {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 28px 72px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - var(--total-h) - 80px);
}

/* hero left */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,150,12,0.18);
  border: 1px solid rgba(201,150,12,0.4);
  color: var(--gold-lt);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-left h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-left h1 em {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.hero-left > p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-badges { display: flex; gap: 24px; flex-wrap: wrap; }
.hb {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.65);
}
.hb i { color: var(--gold); }

/* hero right card */
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  padding: 32px;
}
.hc-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hc-list { list-style: none; margin-bottom: 24px; }
.hc-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 500;
}
.hc-list li:last-child { border-bottom: none; }
.hc-list i { color: var(--gold); width: 16px; text-align: center; font-size: 0.9rem; }

/* hero stats bar */
.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--gold);
}
.hs-item {
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.hs-item:last-child { border-right: none; }
.hs-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.hs-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* =============================================
   SERVICES
   ============================================= */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 52px;
}
.sec-head.centered {
  display: block;
  text-align: center;
  margin-bottom: 52px;
}
.sec-sub { color: var(--muted); max-width: 520px; margin: 12px auto 0; }
.sec-head-right { color: var(--muted); font-size: 1rem; line-height: 1.8; max-width: 440px; justify-self: end; align-self: end; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 3px;
}

.svc-card {
  position: relative;
  overflow: hidden;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  cursor: default;
}
.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
  transition: background var(--t);
}
.svc-card:hover .svc-overlay {
  background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.6) 60%, rgba(201,150,12,0.25) 100%);
}
.svc-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 22px;
  z-index: 1;
}
.svc-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  transition: transform var(--t);
}
.svc-card:hover .svc-icon { transform: scale(1.1); }
.svc-icon i { color: var(--white); font-size: 1rem; }
.svc-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.svc-body p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}
.svc-card:hover .svc-body p { max-height: 80px; opacity: 1; }

/* =============================================
   PROCESS
   ============================================= */
.process-section { background: var(--light); }

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.step:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: var(--border);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
}
.step-icon {
  width: 56px; height: 56px;
  background: var(--black);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step-icon i { color: var(--gold); font-size: 1.3rem; }
.step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.step p { font-size: 0.92rem; color: var(--muted); line-height: 1.75; }

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--gold);
  font-size: 1.3rem;
  padding-top: 56px;
}

/* =============================================
   ABOUT
   ============================================= */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap { position: relative; margin-bottom: 24px; }
.about-img {
  height: 440px;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 160px;
}
.aeb-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  display: block;
  line-height: 1.2;
}
.aeb-sub { font-size: 0.72rem; font-weight: 600; opacity: 0.85; letter-spacing: 0.06em; margin-top: 4px; display: block; }

.about-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.ac {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 14px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.ac-n {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--black);
  line-height: 1;
}
.ac-l {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--muted); margin-bottom: 16px; line-height: 1.8; font-size: 0.97rem; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 24px 0 32px;
}
.af {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 600; color: var(--black);
}
.af i {
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

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

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--light); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: box-shadow var(--t), transform var(--t);
}
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testi-card.featured {
  background: var(--black);
  border-color: var(--black);
}
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 24px;
  font-style: italic;
}
.testi-card.featured p { color: rgba(255,255,255,0.7); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.ta-avatar {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--black); }
.testi-card.featured .testi-author strong { color: var(--white); }
.testi-author span { font-size: 0.78rem; color: var(--muted); }
.testi-card.featured .testi-author span { color: rgba(255,255,255,0.5); }

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip {
  background: linear-gradient(100deg, var(--black) 0%, var(--charcoal) 50%, #1a1200 100%);
  padding: 64px 0;
  border-top: 4px solid var(--gold);
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip-text h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.cta-strip-text p { color: rgba(255,255,255,0.65); font-size: 1rem; }
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =============================================
   CONTACT
   ============================================= */
.contact-section { background: var(--white); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.contact-left h2 { margin-bottom: 14px; }
.contact-left > p { color: var(--muted); margin-bottom: 32px; font-size: 0.97rem; line-height: 1.8; }

.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.cc {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
a.cc:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(201,150,12,0.12); transform: translateX(4px); }
.cc-icon {
  width: 42px; height: 42px;
  background: var(--black);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cc-icon i { color: var(--gold); font-size: 0.95rem; }
.cc-body { flex: 1; }
.cc-body strong { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.cc-body span { font-size: 0.92rem; font-weight: 600; color: var(--black); }
.cc-arrow { color: var(--gold); font-size: 0.8rem; }

/* contact form */
.contact-right {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px;
}
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
.fg input, .fg textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,150,12,0.12);
}
.fg textarea { resize: vertical; }
.select-wrap { position: relative; }
.select-wrap select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--black);
  background: var(--white);
  appearance: none;
  cursor: pointer;
  transition: border-color var(--t), box-shadow var(--t);
}
.select-wrap i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.75rem;
  pointer-events: none;
}
.form-msg { margin-top: 12px; font-size: 0.88rem; text-align: center; font-weight: 600; }
.form-msg.success { color: #1a8a4e; }
.form-msg.error   { color: #c0392b; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--black); color: rgba(255,255,255,0.55); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 28px 56px;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-top: 20px; max-width: 240px; }
.footer-contact-quick { display: flex; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.footer-contact-quick a {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  padding: 7px 14px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--t), color var(--t);
}
.footer-contact-quick a i { color: var(--gold); font-size: 0.75rem; }
.footer-contact-quick a:hover { background: var(--gold); color: var(--white); }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.88rem; transition: color var(--t); }
.footer-col a:hover { color: var(--gold); }

.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
}
.footer-contact-list i { color: var(--gold); font-size: 0.8rem; margin-top: 3px; width: 14px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* =============================================
   FLOAT CALL BUTTON
   ============================================= */
.float-call {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px; height: 56px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(201,150,12,0.5);
  transition: transform var(--t), box-shadow var(--t);
}
.float-call:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(201,150,12,0.6); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 240px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact-quick { margin-top: 16px; }
}

@media (max-width: 900px) {
  .hero-body { grid-template-columns: 1fr; gap: 40px; min-height: unset; padding: 72px 28px 56px; }
  .hero-right { max-width: 480px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hs-item:nth-child(2) { border-right: none; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 560px; }

  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-arrow { padding: 0; transform: rotate(90deg); height: 40px; padding-top: 0; justify-self: center; }

  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .sec-head { grid-template-columns: 1fr; }
  .sec-head-right { justify-self: start; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  #navbar { position: fixed; top: 0; }
  .main-nav, .btn-gold:not(.btn-block):not(.btn-full):not(.btn-lg) { display: none; }
  .burger { display: flex; }
  body { padding-top: var(--nav-h); }
  .float-call { display: flex; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4, 200px); gap: 2px; }

  .about-features { grid-template-columns: 1fr; }
  .contact-right { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 28px 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .section { padding: 64px 0; }
  .hero-body { padding: 56px 20px 40px; }
  .services-grid { grid-template-columns: 1fr; grid-template-rows: repeat(8, 220px); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .about-counters { grid-template-columns: repeat(3, 1fr); }
  .about-exp-badge { right: 0; bottom: -16px; }
}
