/* =============================================
   BUILT RIGHT CONSTRUCTION & REMODELING
   style.css
   Dark Mode | Texas A&M Maroon + Cream
   ============================================= */

:root {
  --dark:        #0f0f12;
  --dark-2:      #16161c;
  --dark-3:      #1e1e26;
  --dark-4:      #26262f;
  --maroon:      #500000;
  --maroon-deep: #3d0000;
  --maroon-lift: #6b0010;
  --burgundy:    #7a1028;
  --maroon-dim:  rgba(80,0,0,0.20);
  --maroon-glow: rgba(80,0,0,0.12);
  --cream:       #f5f0e8;
  --cream-dim:   rgba(245,240,232,0.55);
  --text:        #f5f0e8;
  --text-muted:  #a8a39d;
  --text-dim:    #5a5652;
  --border:      rgba(255,255,255,0.07);
  --border-o:    rgba(80,0,0,0.45);
  --radius:      4px;
  --radius-card: 12px;
  --shadow-card: 0 30px 80px rgba(0,0,0,0.55), 0 8px 24px rgba(0,0,0,0.35);
}

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

/* ---- BASE ---- */
body {
  font-family: 'Rajdhani', sans-serif;
  background-color: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  font-size: 17px;
  line-height: 1.6;
}

/* =============================================
   LOCKED BODY BACKGROUND
   ============================================= */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('assets/bg.jpg') center center / cover no-repeat;
  z-index: -2;
  will-change: transform;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 16, 0.78);
  z-index: -1;
}

/* =============================================
   CUSTOM CURSOR
   ============================================= */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--cream);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, width 0.2s, height 0.2s;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(80,0,0,0.65);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.14s ease-out, width 0.25s, height 0.25s, opacity 0.2s;
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--maroon), var(--maroon-lift), var(--cream));
  z-index: 9997;
  transition: width 0.1s linear;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--maroon);
  color: var(--text);
  border: none; border-radius: var(--radius);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  z-index: 500;
  font-weight: 700;
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--maroon-lift); }

/* =============================================
   FLOATING CTA
   ============================================= */
.floating-cta {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--maroon);
  color: var(--text);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s, background 0.3s;
  z-index: 490;
  box-shadow: 0 4px 20px rgba(80,0,0,0.5);
}
.floating-cta.visible {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.floating-cta:hover { background: var(--maroon-lift); }

/* =============================================
   NAV
   ============================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(12,12,16,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--maroon);
  transition: padding 0.3s, background 0.3s;
}
nav.scrolled {
  padding: 0.7rem 4rem;
  background: rgba(12,12,16,0.96);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}
.nav-logo span { color: var(--cream); }
.nav-links {
  list-style: none;
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--maroon) !important;
  color: var(--text) !important;
  padding: 0.5rem 1.3rem;
  border-radius: var(--radius);
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--maroon-lift) !important; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 70vh;
  display: flex; align-items: center;
  position: relative;
  padding: 6rem 4rem 3rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/hero-bg.jpg') center top / cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8,8,10,0.93) 0%,
    rgba(8,8,10,0.80) 45%,
    rgba(8,8,10,0.45) 75%,
    rgba(8,8,10,0.20) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
}
.hero-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.8rem, 8.5vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-title span { color: var(--maroon-lift); }
.hero-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--maroon);
  color: var(--text);
  padding: 0.85rem 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--maroon-lift); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 0.85rem 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--maroon-lift);
  color: var(--cream);
  transform: translateY(-2px);
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-strip {
  overflow: hidden;
  background: var(--maroon-deep);
  border-top: 2px solid var(--maroon-lift);
  border-bottom: 2px solid var(--maroon-lift);
  padding: 1rem 0;
}
.marquee-track {
  display: flex; gap: 2rem; align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
}
.marquee-track .dot { color: var(--text); font-size: 0.7rem; opacity: 0.6; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SECTION CARD PATTERN
   Sections are transparent gutters.
   .section-card is the contained, slightly transparent card.
   ============================================= */
.about-section,
.services-section,
.trust-section,
.ba-section,
.gallery-section,
.contact-section {
  padding: 5rem 2rem;
  background: transparent;
}

.section-card {
  max-width: 1240px;
  margin: 0 auto;
  background: rgba(18, 18, 22, 0.72);
  border: 1px solid var(--border);
  border-top: 2px solid var(--maroon-lift);
  border-radius: var(--radius-card);
  padding: 4.5rem 4rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* =============================================
   SECTION HELPERS
   ============================================= */
.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-left: 3px solid var(--maroon-lift);
  padding: 0.3rem 0.8rem;
  background: var(--maroon-dim);
  border-radius: 0 2px 2px 0;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 56px; height: 3px;
  background: var(--maroon-lift);
  border-radius: 2px;
}
.section-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 3.5rem;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =============================================
   ABOUT
   ============================================= */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  overflow: hidden;
}
.about-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.about-img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-o);
  width: 100%;
}
.about-img-frame img {
  width: 100%;
  max-height: 560px;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.92);
  transition: filter 0.4s;
}
.about-img-frame:hover img { filter: brightness(1); }
.about-img-accent {
  position: absolute;
  bottom: -12px; right: -12px;
  width: 60%; height: 60%;
  border: 3px solid var(--maroon-lift);
  border-radius: var(--radius);
  z-index: -1;
  pointer-events: none;
}
.about-content { display: flex; flex-direction: column; gap: 0; }
.about-content .section-title span { color: var(--maroon-lift); font-size: 0.85em; }
.about-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.5rem 0 2rem;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--maroon-dim);
  border: 1px solid var(--border-o);
  border-left: 3px solid var(--maroon-lift);
  padding: 0.45rem 0.9rem;
  border-radius: 2px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
}
.badge-icon { color: var(--maroon-lift); font-size: 0.9rem; }

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-top: 2px solid var(--maroon-lift);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--maroon-lift);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--border-o);
  background: var(--dark-4);
  transform: translateY(-4px);
}
.service-icon { font-size: 2rem; line-height: 1; margin-bottom: 1.1rem; }
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 0.7rem;
}
.service-card p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =============================================
   TRUST / EXPERTISE
   ============================================= */
.trust-header { margin-bottom: 3.5rem; }
.trust-header .section-title span { color: var(--maroon-lift); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}
.trust-stat {
  padding: 2.5rem 2rem;
  background: var(--dark-3);
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
  text-align: center;
}
.trust-stat:last-child { border-right: none; }
.trust-stat:hover { background: var(--dark-4); }
.trust-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--maroon-lift);
}
.trust-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.trust-num span { font-size: 2.4rem; color: var(--maroon-lift); }
.trust-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cream);
  line-height: 1.3;
}
.trust-desc { display: none; }
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-top: 2px solid var(--maroon-lift);
  border-radius: var(--radius);
  padding: 1.2rem 2rem;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-bar-icon { color: var(--maroon-lift); font-size: 0.55rem; }
.trust-divider { width: 1px; height: 20px; background: var(--border); }

/* =============================================
   BEFORE / AFTER
   ============================================= */
.ba-wrap { max-width: 900px; margin: 0 auto; }
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius);
  user-select: none;
  border: 1px solid var(--border-o);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.ba-img-before,
.ba-img-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-img-after { clip-path: inset(0 50% 0 0); }
.ba-handle {
  position: absolute;
  top: 0; left: 50%;
  height: 100%;
  width: 3px;
  background: var(--maroon-lift);
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 10;
}
.ba-handle-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--maroon);
  color: var(--text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 14px rgba(80,0,0,0.6);
  white-space: nowrap;
}
.ba-label {
  position: absolute;
  bottom: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.35rem 0.9rem;
  background: rgba(0,0,0,0.75);
  color: var(--text);
  border-radius: 2px;
  z-index: 5;
}
.before-label { left: 1rem; }
.after-label { right: 1rem; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.gallery-item:hover { border-color: var(--maroon-lift); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,14,0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* =============================================
   CONTACT
   ============================================= */
.contact-wrap { max-width: 680px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-dim); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--maroon-lift); }
.form-field select {
  cursor: pointer;
  color: var(--text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f5f0e8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-field select option { background: var(--dark-3); }
.form-field textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  background: var(--maroon);
  color: var(--text);
  border: none;
  border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--maroon-lift); transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.6; pointer-events: none; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--dark);
  border-top: 3px solid var(--maroon);
  padding: 2.5rem 4rem;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
}
.footer-logo span { color: var(--cream); }
.footer-links { list-style: none; display: flex; gap: 2rem; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--cream); }
.footer-copy {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* =============================================
   RESPONSIVE - TABLET
   ============================================= */
@media (max-width: 1024px) {
  nav { padding: 1rem 2rem; }
  nav.scrolled { padding: 0.7rem 2rem; }
  .hero { padding: 7rem 2rem 4rem; }
  .about-section,
  .services-section,
  .trust-section,
  .ba-section,
  .gallery-section,
  .contact-section { padding: 4rem 1.5rem; }
  .section-card { padding: 3.2rem 2.4rem; }
  footer { padding: 2rem 2rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-accent { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 640px) {
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }

  body::before {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-attachment: scroll;
    transform: translateZ(0);
  }

  .hero-bg {
    background-image: url('assets/hero2-bg.jpg');
    background-size: cover;
    background-position: center top;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8,8,10,0.88) 0%,
      rgba(8,8,10,0.70) 50%,
      rgba(8,8,10,0.50) 100%
    );
  }

  nav { padding: 0.9rem 1.2rem; }
  nav.scrolled { padding: 0.7rem 1.2rem; }
  .nav-links { display: none; }

  .hero {
    min-height: auto;
    padding: 6rem 1.2rem 3rem;
    align-items: flex-start;
  }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }

  .marquee-track { animation-duration: 14s; }

  .about-section,
  .services-section,
  .trust-section,
  .ba-section,
  .gallery-section,
  .contact-section { padding: 3rem 0.8rem; }
  .section-card { padding: 2.4rem 1.4rem; }

  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-wrap { max-width: 100%; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { gap: 0.5rem; }
  .trust-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }

  .form-row { grid-template-columns: 1fr; }

  footer { padding: 2rem 1.2rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }

  .back-to-top { bottom: 1.2rem; right: 1.2rem; }
  .floating-cta { bottom: 1.2rem; }
}