/* ═══════════════════════════════════════════
   NISH ADVERTISING — style.css
   Brand: Black #111111 | Gold #F5A800 | White #FFFFFF
   Font: Montserrat + Open Sans
═══════════════════════════════════════════ */

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

:root {
  --black:      #111111;
  --charcoal:   #1a1a1a;
  --dark-grey:  #222222;
  --mid-grey:   #333333;
  --light-grey: #f4f4f4;
  --gold:       #F5A800;
  --gold-dark:  #d48f00;
  --white:      #FFFFFF;
  --text-muted: #aaaaaa;

  --ff-heading: 'Montserrat', sans-serif;
  --ff-body:    'Open Sans', sans-serif;

  --nav-h: 72px;
  --section-pad: 100px 0;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow: 0 8px 32px rgba(0,0,0,0.18);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--ff-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ─── UTILITY ───────────────────────────────── */
.section-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.light { color: var(--text-muted); }

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.1;
}
.section-title.light { color: var(--white); }
.section-title .gold { color: var(--gold); }

.section-underline {
  width: 60px;
  height: 3px;
  background: var(--black);
  margin: 16px auto 0;
}
.section-underline.gold-line { background: var(--gold); }

/* ─── SCROLL REVEAL ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--transition), transform 0.65s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside grids */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.12s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.19s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.26s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.33s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.40s; }

.pillars-grid .pillar-card:nth-child(1) { transition-delay: 0.05s; }
.pillars-grid .pillar-card:nth-child(2) { transition-delay: 0.15s; }
.pillars-grid .pillar-card:nth-child(3) { transition-delay: 0.25s; }
.pillars-grid .pillar-card:nth-child(4) { transition-delay: 0.35s; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#navbar.scrolled {
  background: var(--black);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  background: var(--white);
  border-radius: 6px;
  padding: 5px 10px;
}
.logo-n,
.logo-sh {
  font-family: var(--ff-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
}
.logo-i {
  font-family: var(--ff-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -1px;
  position: relative;
}
.logo-i::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 5px solid var(--gold);
}
.logo-adv {
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--white);
  margin-left: 8px;
  align-self: flex-end;
  margin-bottom: 3px;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-link {
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  /* Night facade with LED signage — brand photography (WebP + JPEG fallback) */
  background-image:
    linear-gradient(135deg,
      rgba(10,10,10,0.82) 0%,
      rgba(20,15,5,0.62) 50%,
      rgba(245,168,0,0.10) 100%),
    image-set(
      url('hero-led-building.webp') type('image/webp'),
      url('hero-led-building.jpg') type('image/jpeg')
    );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: calc(var(--nav-h) + 60px) 24px 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 45%;
  height: 80%;
  background: linear-gradient(135deg, transparent, rgba(245,168,0,0.08));
  pointer-events: none;
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero-tagline {
  font-family: var(--ff-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-headline {
  font-family: var(--ff-heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.hero-accent {
  color: var(--gold);
  display: block;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(245,168,0,0.35);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(245,168,0,0.5);
}

/* Process bar */
.process-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  margin-top: 80px;
  background: rgba(0,0,0,0.55);
  border-top: 1px solid rgba(245,168,0,0.25);
  backdrop-filter: blur(6px);
  padding: 28px 24px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 100px;
}
.process-icon {
  width: 46px; height: 46px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background var(--transition);
}
.process-icon svg { width: 20px; height: 20px; }
.process-step:hover .process-icon { background: var(--gold); color: var(--black); }

.process-step span {
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
}
.process-divider {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  margin: 0 16px;
  opacity: 0.6;
}


/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services-section {
  padding: var(--section-pad);
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.service-card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px;
  background: var(--light-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.card-icon svg { width: 24px; height: 24px; color: var(--black); transition: color var(--transition); }
.service-card:hover .card-icon { background: var(--gold); }
.service-card:hover .card-icon svg { color: var(--black); }

.card-title {
  font-family: var(--ff-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-accent-line {
  width: 32px; height: 2px;
  background: var(--gold);
  margin-bottom: 14px;
  transition: width var(--transition);
}
.service-card:hover .card-accent-line { width: 52px; }

.card-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
}


/* ═══════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════ */
.why-section {
  padding: var(--section-pad);
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,168,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(245,168,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.pillar-card {
  background: var(--charcoal);
  border: 1px solid rgba(245,168,0,0.15);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  background: var(--dark-grey);
}

.pillar-icon {
  width: 60px; height: 60px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  transition: background var(--transition);
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar-card:hover .pillar-icon { background: var(--gold); color: var(--black); }

.pillar-title {
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.4;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════
   CONTACT / CTA
═══════════════════════════════════════════ */
.contact-section { background: var(--light-grey); }

/* Gold CTA banner */
.cta-banner {
  background: var(--gold);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -5%;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-headline {
  font-family: var(--ff-heading);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.25;
  letter-spacing: 0.5px;
}
.cta-headline strong { font-weight: 900; }

.cta-sub {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-top: 8px;
  letter-spacing: 1px;
  font-weight: 500;
}

.cta-phones {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: 1px;
  transition: opacity var(--transition);
}
.phone-link:hover { opacity: 0.75; }
.phone-link svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Form */
.form-area { padding: 80px 0; }

.form-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 52px 48px;
}

.form-title {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 16px;
}
.form-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 44px; height: 3px;
  background: var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.form-group label {
  font-family: var(--ff-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.form-group input,
.form-group textarea {
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,168,0,0.15);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-submit svg { width: 16px; height: 16px; transition: transform var(--transition); }
.btn-submit:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-submit:hover svg { transform: translateX(4px); }

.form-success {
  display: none;
  margin-top: 16px;
  font-family: var(--ff-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #2a7d4f;
  letter-spacing: 0.5px;
}
.form-success.show { display: block; }


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  padding: 52px 0 32px;
  text-align: center;
}

.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 0; }

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-logo .logo-img {
  height: 56px;
}

.footer-tagline {
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  letter-spacing: 5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.footer-divider {
  width: 60px; height: 1px;
  background: rgba(245,168,0,0.35);
  margin: 0 auto 24px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-links-line {
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 700;
}


/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .nav-links.open {
    max-height: 300px;
    border-bottom: 2px solid var(--gold);
  }
  .nav-links li { width: 100%; }
  .nav-link {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-link::after { display: none; }

  .hero {
    padding-top: calc(var(--nav-h) + 40px);
    text-align: center;
    align-items: center;
  }
  .hero-content { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }

  .process-bar {
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 16px;
  }
  .process-divider { display: none; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .pillars-grid { grid-template-columns: 1fr 1fr; }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-phones { align-items: center; }

  .form-wrapper { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2rem; }
  .hero-accent { font-size: 2.2rem; }
}

/* ═══════════════════════════════════════════
   INNER PAGES (services / gallery / contact)
═══════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 96px) 24px 72px;
  background:
    linear-gradient(135deg,
      rgba(10,10,10,0.90) 0%,
      rgba(20,15,5,0.80) 55%,
      rgba(245,168,0,0.14) 100%),
    url('hero-led-building.jpg') center/cover no-repeat;
  text-align: center;
}
.page-hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
}
.page-hero-title .gold { color: var(--gold); }
.page-hero-sub {
  margin-top: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero-underline {
  width: 70px; height: 3px;
  background: var(--gold);
  margin: 22px auto 0;
}

/* Gallery */
.gallery-section { padding: 90px 0; background: #f7f7f7; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  background: var(--black);
}
.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 18px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.gallery-caption span { color: var(--gold); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Contact page info cards */
.contact-info-strip { padding: 70px 0 0; background: #f7f7f7; }
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-info-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border-top: 3px solid var(--gold);
}
.contact-info-card .ci-icon {
  width: 46px; height: 46px;
  margin: 0 auto 14px;
  color: var(--gold);
}
.contact-info-card .ci-icon svg { width: 100%; height: 100%; }
.contact-info-card h3 {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--black);
}
.contact-info-card p, .contact-info-card a {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.6;
}
.contact-info-card a:hover { color: var(--gold); }
@media (max-width: 900px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* ===== Gallery Filters ===== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 40px;
}
.filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 2px solid #111111;
  border-radius: 30px;
  background: transparent;
  color: #111111;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover {
  border-color: #F5A800;
  color: #F5A800;
}
.filter-btn.active {
  background: #111111;
  border-color: #111111;
  color: #F5A800;
}
.gallery-item.filtered-out {
  display: none;
}

/* ===== About Page ===== */
.about-section {
  padding: 100px 0 60px;
  background: #f7f7f7;
}
.about-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.about-copy p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 22px;
}

/* Mission & Vision */
.mv-section {
  padding: 60px 0 100px;
  background: #f7f7f7;
}
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
}
.mv-card {
  background: #111111;
  color: #ddd;
  border-radius: 12px;
  padding: 48px 40px;
  text-align: center;
  border-bottom: 4px solid #F5A800;
}
.mv-icon {
  font-size: 2.4rem;
  color: #F5A800;
  margin-bottom: 18px;
}
.mv-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 16px;
}
.mv-card p {
  line-height: 1.8;
  font-size: 0.98rem;
}

/* Team */
.team-section {
  padding: 100px 0;
  background: #ffffff;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.team-card {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}
.team-avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #111111;
  color: #F5A800;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #F5A800;
}
.team-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 4px;
}
.team-role {
  color: #F5A800;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-bio {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Testimonials */
.testimonial-section {
  padding: 100px 0;
  background: #f7f7f7;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 30px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #F5A800;
}
.testimonial-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: #F5A800;
  margin-bottom: 8px;
}
.testimonial-text {
  color: #444;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #111;
}
.testimonial-company {
  color: #888;
  font-size: 0.85rem;
}
