/* ══════════════════════════════════════════
   RISE ELECTRICAL — global.css
   ══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --black:      #0a0a0a;
  --off-black:  #111111;
  --dark-grey:  #1a1a1a;
  --mid-grey:   #2a2a2a;
  --light-grey: #888888;
  --white:      #f5f5f5;
  --gold:       #c9a84c;
  --gold-dark:  #a8883a;
  --gold-light: #e0c068;
  --gold-dim:   rgba(201,168,76,0.12);
  --gold-border:rgba(201,168,76,0.25);

  --header-h: 70px;

  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --transition: 0.25s ease;
  --radius: 0px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { background: var(--black); color: var(--white); font-family: var(--font-body); font-weight: 400; line-height: 1.6; overflow-x: hidden; }
img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ── */
.container        { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 5vw; }
.section-pad      { padding: 100px 5vw; }
.section-pad--sm  { padding: 60px 5vw; }

/* ── Section labels / headings ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.section-title span { color: var(--gold); }

.section-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--light-grey);
  max-width: 580px;
  line-height: 1.85;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 34px;
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}
.btn--primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── Tags / Badges ── */
.tag {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  padding: 5px 14px;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── Trust bar ── */
.trust-bar {
  background: var(--gold);
  padding: 16px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
}

/* ── Scroll fade-up animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Divider line ── */
.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 0;
}

/* ── Gold accent bar (top-left corner) ── */
.accent-bar {
  position: relative;
}
.accent-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50px; height: 3px;
  background: var(--gold);
}

/* ── Responsive helpers ── */
@media (max-width: 768px) {
  .section-pad    { padding: 70px 6vw; }
  .section-pad--sm{ padding: 40px 6vw; }
  .hide-mobile    { display: none !important; }
}
@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}
