/* ═══════════════════════════════════════════════════════════════════
   FLOORSGH.COM — Brand Configuration CSS
   Extends walada-master.css. DO NOT duplicate master rules here.
   Brand: Floors GH · Pair D · Flooring Cluster · Phase 4 Pilot
   Phone: 0205 313 333 / 0205 360 000
   Email: info@floorsgh.com
   Slogan: Every Step, Perfectly Placed.
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── BRAND TOKENS (overrides walada-master.css defaults) ── */
:root {
  /* Identity */
  --brand-name:           'Floors GH';
  --brand-phone:          '+233205313333';
  --brand-phone-display:  '0205 313 333';
  --brand-phone-2:        '0205 360 000';
  --brand-whatsapp:       'https://wa.me/233205313333';
  --brand-email:          'info@floorsgh.com';
  --brand-slogan:         'Every Step, Perfectly Placed.';

  /* Colour Palette — Deep obsidian + burnished gold */
  --brand-bg:             #080808;
  --brand-surface:        #0d0d0d;
  --brand-surface2:       #131313;
  --brand-surface3:       #1a1a1a;
  --brand-primary:        #0d0d0d;
  --brand-secondary:      #1a1a1a;

  /* Gold — warm burnished, not bright yellow */
  --brand-accent:         #c9a84c;
  --brand-accent-light:   rgba(201,168,76,0.10);
  --brand-accent-border:  rgba(201,168,76,0.28);
  --brand-accent-hover:   #d4b660;

  /* Typography */
  --brand-text:           #f0eee8;
  --brand-muted:          rgba(240,238,232,0.52);
  --brand-font-head:      'Cormorant Garant', Georgia, serif;
  --brand-font-body:      'DM Sans', sans-serif;
  --brand-font-mono:      'DM Mono', monospace;

  /* Hero */
  --brand-hero-image:     url('/assets/images/hero-premium-epoxy-installation-corporate-accra-ghana.webp');
  --brand-hero-overlay:   rgba(5,4,3,0.68);

  /* Spacing */
  --section-pad:          96px;

  /* Borders */
  --border-subtle:        rgba(255,255,255,0.055);
  --border-accent:        rgba(201,168,76,0.28);
}

/* ── FLOORSGH TYPOGRAPHY OVERRIDES ── */
/* Cormorant Garant gives luxury editorial feel for headings */
h1, h2, h3 {
  font-family: var(--brand-font-head);
  font-weight: 600;
  letter-spacing: -0.3px;
}
h1 { font-size: clamp(38px, 5.5vw, 66px); font-weight: 700; }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.8vw, 26px); }
h4 { font-family: var(--brand-font-body); font-size: 16px; font-weight: 600; }

/* Body paragraphs — DM Sans, comfortable reading size */
p { font-family: var(--brand-font-body); font-size: 15px; line-height: 1.82; }

/* Accent italic in headings */
h1 em, h2 em { color: var(--brand-accent); font-style: italic; }

/* ── NAVBAR FLOORSGH OVERRIDES ── */
.navbar.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(24px);
}
.nav-lang-toggle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-muted);
  padding: 5px 10px;
  border: 1px solid var(--border-subtle);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
}
.nav-lang-toggle:hover {
  border-color: var(--brand-accent-border);
  color: var(--brand-accent);
}

/* ── HERO VIDEO BACKGROUND ── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

/* ── TRUST BAR — floorsgh style ── */
.trust-strip {
  background: var(--brand-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 22px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.trust-item-num {
  font-family: var(--brand-font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-accent);
  line-height: 1;
}
.trust-item-label {
  font-size: 12px;
  color: var(--brand-muted);
  line-height: 1.4;
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

/* ── SERVICE CARDS — floorsgh enhanced ── */
.service-card {
  background: var(--brand-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 32px 26px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 22px;
  display: block;
}
.service-card-icon {
  width: 50px; height: 50px;
  background: var(--brand-accent-light);
  border: 1px solid var(--brand-accent-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--brand-text);
  font-family: var(--brand-font-head);
}
.service-card p {
  font-size: 13.5px;
  color: var(--brand-muted);
  margin-bottom: 18px;
  line-height: 1.7;
}
.service-card-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-accent);
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-card:hover {
  border-color: var(--brand-accent-border);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card:hover .service-card-link { gap: 10px; }

/* ── CASE STUDY CARDS ── */
.case-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--brand-surface);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s;
  display: block;
  text-decoration: none;
}
.case-card:hover { border-color: var(--brand-accent-border); transform: translateY(-3px); }
.case-card-img {
  width: 100%; height: 220px;
  object-fit: cover;
  display: block;
}
.case-card-body { padding: 22px 24px; }
.case-card-tags {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px;
}
.case-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px;
  background: var(--brand-accent-light);
  color: var(--brand-accent);
  border: 1px solid var(--brand-accent-border);
}
.case-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--brand-text); }
.case-card p { font-size: 13px; color: var(--brand-muted); line-height: 1.65; margin-bottom: 14px; }
.case-metric {
  display: flex; gap: 16px; padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}
.case-metric-item { }
.case-metric-num { font-family: var(--brand-font-head); font-size: 20px; font-weight: 700; color: var(--brand-accent); }
.case-metric-label { font-size: 11px; color: var(--brand-muted); }

/* ── PROCESS STEPS ── */
.process-section { background: var(--brand-surface); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: steps;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

.process-step {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: var(--brand-surface2);
  transition: border-color 0.25s;
}
.process-step:hover { border-color: var(--brand-accent-border); }
.process-step-num {
  width: 52px; height: 52px;
  background: var(--brand-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--brand-font-head);
  font-size: 22px; font-weight: 700;
  color: #000;
  margin: 0 auto 18px;
}
.process-step h4 { font-size: 15px; margin-bottom: 8px; color: var(--brand-text); }
.process-step p { font-size: 13px; color: var(--brand-muted); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--brand-surface2);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 22px;
  font-family: var(--brand-font-head);
  font-size: 64px;
  color: var(--brand-accent);
  opacity: 0.3;
  line-height: 1;
}
.testimonial-text {
  font-size: 15px;
  color: var(--brand-text);
  line-height: 1.8;
  font-style: italic;
  font-family: var(--brand-font-head);
  margin-bottom: 22px;
  padding-top: 24px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-accent-border);
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--brand-text); }
.testimonial-role { font-size: 12px; color: var(--brand-muted); }

/* ── WORKERS STRIP — required on all pages ── */
.workers-strip {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.workers-strip-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65);
}
.workers-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.75) 0%, rgba(8,8,8,0.35) 100%);
  display: flex;
  align-items: center;
}
.workers-strip-text {
  padding: 0 64px;
}
.workers-strip-text h3 {
  font-family: var(--brand-font-head);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  font-style: italic;
}
.workers-strip-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
}
@media (max-width: 640px) {
  .workers-strip { height: 260px; }
  .workers-strip-text { padding: 0 24px; }
}

/* ── STATS SECTION ── */
.stats-bar {
  background: var(--brand-accent);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  font-family: var(--brand-font-head);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: rgba(0,0,0,0.65); font-weight: 600; }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding: 140px 0 72px;
  background: var(--brand-surface);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--brand-accent-light) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { max-width: 700px; margin-bottom: 18px; }
.page-hero p { font-size: 17px; max-width: 580px; color: var(--brand-muted); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--brand-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--brand-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--brand-accent); }
.breadcrumb span { color: var(--brand-muted); }

/* ── BEFORE/AFTER SLIDER ── */
.before-after {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  user-select: none;
  cursor: col-resize;
}
.before-after img { display: block; width: 100%; height: 400px; object-fit: cover; }
.before-after .after-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 50%;
}
.before-after .after-img img { width: 100vw; max-width: 100%; }
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--brand-accent);
  cursor: col-resize;
  z-index: 10;
}
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: var(--brand-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  z-index: 11;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.ba-label {
  position: absolute;
  bottom: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.ba-label.before { left: 12px; }
.ba-label.after { right: 12px; }

/* ── LOCATIONS MAP SECTION ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 768px) { .locations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }

.location-pill {
  text-align: center;
  padding: 16px 12px;
  background: var(--brand-surface2);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-muted);
  transition: all 0.2s;
  cursor: default;
}
.location-pill:hover {
  border-color: var(--brand-accent-border);
  color: var(--brand-accent);
}

/* ── ABOUT: TEAM GRID ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--brand-surface2);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.team-card:hover { border-color: var(--brand-accent-border); }
.team-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.team-info { padding: 20px 22px; }
.team-name { font-size: 17px; font-weight: 600; margin-bottom: 4px; color: var(--brand-text); }
.team-title { font-size: 12px; color: var(--brand-accent); font-weight: 500; letter-spacing: 0.3px; margin-bottom: 10px; }
.team-bio { font-size: 13px; color: var(--brand-muted); line-height: 1.65; }

/* ── AWARDS ── */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 640px) { .awards-grid { grid-template-columns: 1fr; } }

.award-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--brand-accent-border);
  background: var(--brand-surface2);
  cursor: pointer;
  transition: transform 0.2s;
}
.award-card:hover { transform: scale(1.02); }
.award-card img { width: 100%; display: block; }
.award-year {
  padding: 14px 18px;
  font-family: var(--brand-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-accent);
  text-align: center;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--brand-surface);
  border-top: 1px solid var(--brand-accent-border);
  border-bottom: 1px solid var(--brand-accent-border);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p { font-size: 16px; color: var(--brand-muted); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── WHATSAPP FLOAT BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
@media (max-width: 640px) { .whatsapp-float { bottom: 76px; } }

/* ── UTILITY OVERRIDES FOR FLOORSGH ── */
.section { padding: var(--section-pad) 0; }
.bg-surface { background: var(--brand-surface); }
.bg-surface2 { background: var(--brand-surface2); }

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--brand-accent);
  z-index: 2000;
  width: 0%;
  transition: width 0.08s linear;
}
