/* ============================================
   BM CONTRACTING LTD - Main Stylesheet
   Colour Scheme: Charcoal / Black / White / Red
   ============================================ */

:root {
  --black:    #111111;
  --charcoal: #1e1e1e;
  --dark:     #2a2a2a;
  --mid:      #3a3a3a;
  --border:   #444444;
  --white:    #ffffff;
  --off-white:#f4f4f4;
  --red:      #c0392b;
  --red-dark: #a93226;
  --text:     #e8e8e8;
  --muted:    #999999;
  --nav-h:    72px;
  --radius:   6px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--charcoal);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.dark-section { background: var(--black); }
.center { text-align: center; }

/* ---- TYPOGRAPHY ---- */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; color: var(--white); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; color: var(--white); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
p { color: var(--muted); margin-bottom: 1rem; }
.section-intro { max-width: 600px; margin: 0 auto 3rem; font-size: 1.05rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); transform: translateY(-2px); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.navbar.scrolled { background: var(--black); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--transition);
  white-space: nowrap;
}
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta:hover { background: var(--red-dark); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.3));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-h);
}
.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}
.hero-content h1 { margin-bottom: 1.25rem; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero-content p {
  max-width: 520px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.5;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.1)} }

/* ---- STATS STRIP ---- */
.stats-strip {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stats-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 1rem 2.5rem;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ---- INTRO ---- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-text h2 { margin-bottom: 1.25rem; }
.intro-text p { margin-bottom: 1.25rem; }
.intro-text .btn { margin-top: 0.75rem; }
.intro-images {
  position: relative;
  height: 500px;
}
.intro-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 78%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.intro-img-main img { width: 100%; height: 100%; object-fit: cover; }
.intro-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--charcoal);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.intro-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  display: block;
}
.service-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(192,57,43,0.2);
}
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--red);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 1.25rem; }
.card-link { font-size: 0.85rem; color: var(--red); font-weight: 600; }

/* ---- VIDEO CAROUSEL ---- */
.video-section { background: var(--charcoal); overflow: hidden; }
.video-section .container { margin-bottom: 3rem; }
.video-carousel { position: relative; }
.video-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 5vw 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.video-track::-webkit-scrollbar { display: none; }
.video-slide {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: center;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
}
.video-slide.active {
  width: 600px;
}
.video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 16/9;
}
.carousel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition);
}
.video-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.video-play-hint {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(192,57,43,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition);
}
.video-play-hint svg { width: 22px; height: 22px; margin-left: 3px; }
.video-slide.active .video-play-hint { opacity: 0; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0 2rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active { background: var(--red); width: 24px; border-radius: 4px; }

/* ---- GALLERY MASONRY ---- */
.gallery-masonry {
  column-count: 4;
  column-gap: 8px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(192,57,43,0.2);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--red); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ---- CTA BANNER ---- */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-content h2 { margin-bottom: 1rem; }
.cta-content p { max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; color: rgba(255,255,255,0.8); }
.cta-content .hero-btns { justify-content: center; }

/* ---- CREDENTIALS ---- */
.creds-strip { background: var(--dark); border-top: 1px solid var(--border); padding: 3.5rem 0; }
.creds-strip .container {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.cred-icon {
  width: 36px; height: 36px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.cred-text strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 0.2rem; }
.cred-text span { font-size: 0.82rem; color: var(--muted); }

/* ---- FOOTER ---- */
.footer { background: var(--black); padding: 5rem 0 0; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}
.footer-logo { height: 56px; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.88rem; }
.footer-links h4, .footer-services h4, .footer-contact h4 { margin-bottom: 1.25rem; }
.footer-links ul li, .footer-services ul li, .footer-contact ul li {
  margin-bottom: 0.65rem;
}
.footer-links a, .footer-services a, .footer-contact a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover, .footer-services a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact ul li { color: var(--muted); font-size: 0.88rem; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}
.footer-bottom p { font-size: 0.82rem; color: var(--border); margin: 0; text-align: center; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--black);
  padding: 8rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { max-width: 560px; margin: 1rem auto 0; }

/* ---- CONTACT FORM ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark); }
.file-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition);
}
.file-upload:hover { border-color: var(--red); }
.file-upload input[type="file"] { display: none; }
.file-upload-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.file-upload p { font-size: 0.85rem; margin: 0; }
.file-list { margin-top: 0.75rem; }
.file-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark);
  border-radius: 4px;
  padding: 0.4rem 0.75rem;
  margin-top: 0.4rem;
  font-size: 0.82rem;
}
.file-remove { cursor: pointer; color: var(--red); font-size: 1.1rem; background: none; border: none; color: var(--muted); }
.form-success {
  display: none;
  background: #1a3a1a;
  border: 1px solid #2d6a2d;
  color: #6fcf6f;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.95rem;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: white; }
.contact-detail strong { display: block; color: var(--white); margin-bottom: 0.2rem; }
.contact-detail span, .contact-detail a { color: var(--muted); font-size: 0.9rem; }
.contact-detail a:hover { color: var(--white); }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
  border: 1px solid var(--border);
}
.map-embed iframe { display: block; }

/* ---- ABOUT PAGE ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-card p { font-size: 0.85rem; color: var(--red); margin: 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.value-icon { font-size: 2rem; margin-bottom: 1rem; }

/* ---- SERVICES PAGE ---- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail h2 { margin-bottom: 1rem; }
.service-detail ul { margin: 1rem 0 1.5rem; }
.service-detail ul li {
  padding: 0.4rem 0;
  color: var(--muted);
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}
.service-detail ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-images { height: 350px; }
  .creds-strip .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 56px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; width: 100%; }
  .nav-cta { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-masonry { column-count: 2; }
  .stat-divider { display: none; }
  .stats-strip .container { gap: 0; }
  .stat { padding: 0.75rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .creds-strip .container { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .video-slide { width: 260px; }
  .video-slide.active { width: 340px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .gallery-masonry { column-count: 1; }
  h1 { font-size: 2rem; }
}

/* ---- HERO TITLE UPDATES ---- */
.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

/* ---- INSTAGRAM LINK ---- */
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0 24px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-header h2 { margin-bottom: 0.25rem; }
.gallery-header p { margin: 0; }
.instagram-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.instagram-link svg { width: 20px; height: 20px; color: var(--red); }
.instagram-link:hover { border-color: var(--red); color: var(--red); }

/* ---- PROFILE CARDS ---- */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.profile-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.profile-img {
  height: 320px;
  overflow: hidden;
}
.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.profile-card:hover .profile-img img { transform: scale(1.03); }
.profile-info { padding: 1.75rem; }
.profile-info h3 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.profile-role {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.profile-info p { font-size: 0.9rem; margin: 0; }

@media (max-width: 768px) {
  .profiles-grid { grid-template-columns: 1fr; max-width: 420px; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
  .hero-title { font-size: 2.8rem; }
}

/* ---- HERO CENTERED ---- */
.hero-content.centered { text-align: center; }
.hero-content.centered h1,
.hero-content.centered p { text-align: center; }
.centered-btns { justify-content: center !important; }

.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem) !important;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero-tagline {
  font-size: clamp(1.3rem, 3vw, 2rem) !important;
  color: rgba(255,255,255,0.92) !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem !important;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

/* ---- VIDEO DUO ---- */
.video-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 0 24px;
  max-width: 1300px;
  margin: 0 auto;
}
.video-duo-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: var(--black);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease;
}
.video-duo-item:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.video-duo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.duo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: videoFadeIn 1s ease;
}
@keyframes videoFadeIn {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}
.video-duo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}
.video-duo-label {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.video-duo-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* About page team banner fix */
.team-hero-img {
  object-position: center 30% !important;
}

@media (max-width: 768px) {
  .video-duo { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem !important; }
  .hero-tagline { font-size: 1.1rem !important; }
}

/* ---- INSTAGRAM FEED SECTION ---- */
.instagram-section { overflow: hidden; }
.insta-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.insta-header h2 { margin-bottom: 0.25rem; }
.insta-header p { margin: 0; }
.insta-feed-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.insta-feed-wrap behold-widget {
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .insta-header { flex-direction: column; align-items: flex-start; }
}

/* ---- VIDEO TRIO ---- */
.video-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 24px;
  max-width: 1300px;
  margin: 0 auto;
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }
.fade-in-delay-6 { transition-delay: 0.6s; }

/* ---- FLOATING CALL BUTTON ---- */
.float-call {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: var(--red);
  color: white;
  border-radius: 50px;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(192,57,43,0.5);
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: all var(--transition);
  animation: floatPulse 2.5s ease-in-out infinite;
}
.float-call svg { width: 20px; height: 20px; }
.float-call:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192,57,43,0.6);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(192,57,43,0.5); }
  50% { box-shadow: 0 4px 30px rgba(192,57,43,0.8); }
}
@media (max-width: 768px) {
  .float-call { display: flex; }
  .video-trio { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .video-trio { grid-template-columns: 1fr 1fr; }
}

/* ---- HERO CENTERED FINAL FIX ---- */
.hero-content.centered {
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center !important;
  width: 100%;
}
.hero-content.centered .hero-title,
.hero-content.centered .hero-tagline {
  text-align: center !important;
  width: 100%;
}
.centered-btns {
  justify-content: center !important;
  display: flex !important;
}

/* ---- TEAM BANNER FIX ---- */
.team-banner-section {
  background: #111;
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* ---- WHY CHOOSE US ---- */
.why-section { background: var(--charcoal); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(192,57,43,0.15);
}
.why-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.why-card h3 { margin-bottom: 0.75rem; font-size: 1.05rem; }
.why-card p { font-size: 0.88rem; margin: 0; }

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---- MOBILE FIXES ---- */
@media (max-width: 768px) {
  /* Hero - center everything */
  .hero-content {
    text-align: center !important;
    align-items: center !important;
    display: flex;
    flex-direction: column;
  }
  .hero-content h1,
  .hero-content .hero-title,
  .hero-content .hero-tagline,
  .hero-content p { text-align: center !important; }
  .hero-btns { justify-content: center !important; }

  /* Credentials strip - reduce width to fit mobile */
  .creds-strip .container {
    grid-template-columns: 1fr !important;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .cred-item {
    justify-content: flex-start;
  }

  /* Stats strip - wrap nicely on mobile */
  .stats-strip .container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: center;
  }
  .stat-divider { display: none; }
}
