/* ============================================================
   PrimeTime Construction — Main Stylesheet
   Brand: Navy (#0B1F3A) + Gold (#C9A84C) + White
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Barlow+Condensed:wght@600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --navy: #0B1F3A;
  --navy-mid: #122845;
  --navy-light: #1A3560;
  --gold: #C9A84C;
  --gold-light: #E0BF6E;
  --gold-dark: #A8883A;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --light-grey: #EBEBEB;
  --mid-grey: #8A8A8A;
  --dark-grey: #333333;
  --text-dark: #1A1A1A;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-medium: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-heavy: 0 20px 60px rgba(0,0,0,0.28);
  --border-radius: 4px;
  --transition: 0.3s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --container-max: 1240px;
  --container-wide: 1440px;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; }
h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-family: var(--font-condensed); font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 700; letter-spacing: 0.02em; }
h4 { font-family: var(--font-condensed); font-size: 1.15rem; font-weight: 700; letter-spacing: 0.03em; }
p { font-size: 1rem; color: var(--dark-grey); }

/* --- Container --- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }

/* --- Section Spacing --- */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* --- Section Labels --- */
.section-label {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 2px;
  background: var(--gold);
}

/* --- Section Headers --- */
.section-header { margin-bottom: 50px; }
.section-header.center { text-align: center; }
.section-header.center .section-label { padding-left: 0; padding-right: 28px; }
.section-header.center .section-label::before { display: none; }
.section-header.center .section-label::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 2px;
  background: var(--gold);
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; font-size: 1.05rem; }
.section-header.center p { margin: 0 auto; }
.section-header.light h2, .section-header.light p { color: var(--white); }
.section-header.light .section-label { color: var(--gold-light); }
.section-header.light .section-label::before,
.section-header.light .section-label::after { background: var(--gold-light); }

/* --- Gold Divider --- */
.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 18px 0 0;
  border-radius: 2px;
}
.section-header.center .gold-divider { margin: 18px auto 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 18px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 22px 0;
  background: transparent;
}
#site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.site-logo img {
  height: 56px;
  width: auto;
  transition: height var(--transition);
}
#site-header.scrolled .site-logo img { height: 44px; }
.site-logo .logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text-top {
  font-family: var(--font-condensed);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
}
.logo-text-sub {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-top: 3px;
}

/* Fallback logo shield */
.logo-shield {
  width: 50px;
  height: 58px;
  margin-right: 12px;
  flex-shrink: 0;
}

nav.main-nav { display: flex; align-items: center; gap: 6px; }
nav.main-nav a {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 8px 12px;
  border-radius: var(--border-radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--gold); }
nav.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 12px; right: 12px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
nav.main-nav a:hover::after, nav.main-nav a.active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  font-family: var(--font-condensed);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone svg { width: 14px; height: 14px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-condensed);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn { font-size: 1rem; padding: 16px 40px; }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=85');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(11,31,58,0.95) 0%,
    rgba(11,31,58,0.82) 50%,
    rgba(11,31,58,0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 100px;
  max-width: 760px;
}
.hero-eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 2px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  font-weight: 800;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 30px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-badge-num {
  font-family: var(--font-condensed);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-badge-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ============================================================
   CREDENTIAL BADGES / SNAPSHOT
   ============================================================ */
.credentials-bar {
  background: var(--navy);
  padding: 28px 0;
  border-bottom: 3px solid var(--gold);
}
.credentials-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.credentials-inner::-webkit-scrollbar { display: none; }
.credential-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.credential-item:last-child { border-right: none; }
.credential-icon {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  flex-shrink: 0;
}
.credential-icon svg { width: 18px; height: 18px; color: var(--gold); }
.credential-text {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 6px;
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 56px; height: 56px;
  background: rgba(11,31,58,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background var(--transition);
}
.service-card:hover .service-card-icon {
  background: var(--navy);
}
.service-card-icon svg {
  width: 26px; height: 26px;
  color: var(--navy);
  transition: color var(--transition);
}
.service-card:hover .service-card-icon svg { color: var(--gold); }
.service-card h3 { color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 0.94rem; color: var(--mid-grey); line-height: 1.7; margin-bottom: 24px; }
.service-card .btn {
  font-size: 0.78rem;
  padding: 10px 22px;
}

/* ============================================================
   SELF-PERFORMED TRADES
   ============================================================ */
.trades-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.trades-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(201,168,76,0.04);
  pointer-events: none;
}
.trades-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,168,76,0.03);
  pointer-events: none;
}
.trades-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.trades-content h2 { color: var(--white); margin-bottom: 20px; }
.trades-content p { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 16px; }
.trades-advantage {
  margin-top: 30px;
  padding: 24px;
  background: rgba(201,168,76,0.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
}
.trades-advantage p {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  margin: 0;
}
.trades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.trade-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}
.trade-item:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.3);
  transform: translateX(4px);
}
.trade-icon {
  width: 32px; height: 32px;
  background: rgba(201,168,76,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trade-icon svg { width: 16px; height: 16px; color: var(--gold); }
.trade-item span {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.88);
  text-transform: uppercase;
}

/* ============================================================
   TRADE PARTNERS
   ============================================================ */
.partners-section { background: var(--white); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.partner-card {
  text-align: center;
  padding: 40px 30px;
  border: 1px solid var(--light-grey);
  border-radius: 6px;
  transition: all var(--transition);
}
.partner-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(201,168,76,0.15);
  transform: translateY(-4px);
}
.partner-card-icon {
  width: 70px; height: 70px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.partner-card-icon svg { width: 32px; height: 32px; color: var(--gold); }
.partner-card h3 { color: var(--navy); margin-bottom: 10px; }
.partner-card p { font-size: 0.9rem; color: var(--mid-grey); line-height: 1.7; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section { background: var(--off-white); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-card {
  background: var(--white);
  border-radius: 6px;
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
  box-shadow: var(--shadow-soft);
}
.industry-card:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--gold);
  box-shadow: var(--shadow-medium);
}
.industry-card-icon {
  width: 54px; height: 54px;
  background: rgba(11,31,58,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background var(--transition);
}
.industry-card:hover .industry-card-icon { background: var(--navy); }
.industry-card-icon svg { width: 24px; height: 24px; color: var(--navy); transition: color var(--transition); }
.industry-card:hover .industry-card-icon svg { color: var(--gold); }
.industry-card h4 { color: var(--navy); font-size: 0.9rem; }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-section { background: var(--navy); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.why-item {
  text-align: center;
  padding: 28px 16px;
}
.why-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid rgba(201,168,76,0.25);
}
.why-icon svg { width: 22px; height: 22px; color: var(--gold); }
.why-item h4 {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.06em;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section { background: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: 4px;
  border: 1px solid var(--light-grey);
  transition: all var(--transition);
}
.area-item:hover {
  background: var(--navy);
  border-color: var(--navy);
}
.area-item:hover span { color: var(--white); }
.area-item:hover svg { color: var(--gold); }
.area-item svg { width: 14px; height: 14px; color: var(--navy); flex-shrink: 0; transition: color var(--transition); }
.area-item span {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  transition: color var(--transition);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text h2 { color: var(--white); margin-bottom: 14px; }
.cta-text p { color: rgba(255,255,255,0.78); max-width: 560px; font-size: 1.05rem; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  flex-shrink: 0;
}
.cta-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.cta-contact-link:hover { color: var(--gold-light); }
.cta-contact-link svg { width: 15px; height: 15px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #080F1C;
  color: rgba(255,255,255,0.65);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text-top { font-size: 1.2rem; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a, .footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 14px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
}
.footer-badge svg { width: 14px; height: 14px; color: var(--gold); }
.footer-badge span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.page-hero.about::before { background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1600&q=70'); }
.page-hero.services::before { background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=70'); }
.page-hero.industries::before { background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=70'); }
.page-hero.areas::before { background-image: url('https://images.unsplash.com/photo-1610913413000-14c41c509a50?w=1600&q=70'); }
.page-hero.contact::before { background-image: url('https://images.unsplash.com/photo-1586771107445-d3ca888129ff?w=1600&q=70'); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.breadcrumb a, .breadcrumb span {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); font-size: 0.7rem; }
.breadcrumb .current { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 180px; height: 180px;
  background: var(--gold);
  border-radius: 4px;
  z-index: -1;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.about-stat {
  padding: 24px;
  background: var(--navy);
  border-radius: 6px;
  text-align: center;
}
.about-stat-num {
  font-family: var(--font-condensed);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  padding: 30px;
  border: 1px solid var(--light-grey);
  border-radius: 6px;
  transition: all var(--transition);
}
.value-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(201,168,76,0.12);
}
.value-num {
  font-family: var(--font-condensed);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(11,31,58,0.08);
  line-height: 1;
  margin-bottom: 12px;
}
.value-card h3 { color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 0.92rem; color: var(--mid-grey); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--light-grey);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img {
  border-radius: 6px;
  overflow: hidden;
  height: 380px;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-detail-img:hover img { transform: scale(1.04); }
.service-detail-content .section-label { margin-bottom: 10px; }
.service-detail-content h2 { color: var(--navy); margin-bottom: 18px; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.service-detail-content p { color: var(--mid-grey); margin-bottom: 16px; }
.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.service-feature-check {
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-feature-check svg { width: 10px; height: 10px; color: var(--navy); }
.service-feature span { font-size: 0.92rem; color: var(--dark-grey); }

/* ============================================================
   INDUSTRIES PAGE
   ============================================================ */
.industry-detail {
  padding: 60px 0;
  border-bottom: 1px solid var(--light-grey);
}
.industry-detail:last-child { border-bottom: none; }
.industry-detail-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
.industry-sidebar {
  padding: 30px;
  background: var(--navy);
  border-radius: 6px;
  text-align: center;
}
.industry-sidebar-icon {
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.industry-sidebar-icon svg { width: 28px; height: 28px; color: var(--gold); }
.industry-sidebar h3 { color: var(--white); margin-bottom: 10px; }
.industry-sidebar p { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.industry-content h2 { color: var(--navy); margin-bottom: 16px; }
.industry-content p { color: var(--mid-grey); margin-bottom: 16px; font-size: 0.96rem; }
.industry-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(11,31,58,0.06);
  border: 1px solid rgba(11,31,58,0.12);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
}

/* ============================================================
   SERVICE AREAS PAGE
   ============================================================ */
.area-detail {
  padding: 50px 0;
  border-bottom: 1px solid var(--light-grey);
}
.area-detail:last-child { border-bottom: none; }
.area-detail h2 { color: var(--navy); margin-bottom: 12px; }
.area-detail p { color: var(--mid-grey); font-size: 0.96rem; max-width: 800px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: 6px;
  padding: 40px;
  position: sticky;
  top: 100px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin-bottom: 30px; }
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-detail-text label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.contact-detail-text a, .contact-detail-text span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  display: block;
  transition: color var(--transition);
}
.contact-detail-text a:hover { color: var(--gold-light); }
.contact-hours {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-hours h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.contact-hours p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 4px; }
.areas-compact {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.areas-compact h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.areas-compact p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* Quote Form */
.quote-form-wrap {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 6px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.quote-form-wrap h3 { color: var(--navy); margin-bottom: 6px; }
.quote-form-wrap > p { color: var(--mid-grey); font-size: 0.92rem; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group label .req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%230B1F3A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px 32px; font-size: 1rem; }
.form-note {
  text-align: center;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--mid-grey);
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .trades-layout { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 900px) {
  nav.main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .header-phone { display: none; }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; direction: ltr; }
  .service-detail-img { height: 280px; }
  .partners-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .industry-detail-inner { grid-template-columns: 1fr; gap: 30px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .section-pad { padding: 60px 0; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-actions { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 20px; }
  .credential-item { padding: 0 18px; }
  .trades-grid { grid-template-columns: 1fr; }
  .quote-form-wrap { padding: 28px 20px; }
  .contact-info-card { padding: 28px 20px; }
  .hero-content { padding: 130px 0 80px; }
  .hero h1 { font-size: 2.2rem; }
  .page-hero { padding: 120px 0 60px; }
}
@media (max-width: 460px) {
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   CONTACT PAGE — EXTENDED STYLES
   ============================================================ */

/* Contact info card — new structure */
.contact-section { padding: 80px 0; }
.contact-info-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-info-logo .logo-shield { width: 42px; height: auto; }
.contact-info-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 0;
}
.contact-info-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 24px 0;
}
.contact-info-items { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 38px; height: 38px;
  background: rgba(201,168,76,0.15);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 16px; height: 16px; color: var(--gold); }
.contact-info-detail { display: flex; flex-direction: column; gap: 2px; }
.contact-info-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.contact-info-value {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}
a.contact-info-value:hover { color: var(--gold-light); }
.contact-info-value-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* Areas pills inside card */
.contact-areas-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.contact-areas-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.contact-areas-pills span {
  font-size: 0.75rem;
  padding: 3px 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  color: rgba(255,255,255,0.7);
}

/* Credentials at bottom of card */
.contact-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-cred-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}
.contact-cred-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* Quote form wrap — new headings */
.quote-form-header { margin-bottom: 32px; }
.quote-form-header h2 { color: var(--navy); margin-bottom: 8px; }
.quote-form-header p { color: var(--mid-grey); font-size: 0.93rem; line-height: 1.65; }

/* Full-width form group */
.form-group-full { grid-column: 1 / -1; }
.form-submit-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.form-submit-row .btn { padding: 16px 40px; font-size: 1rem; }
.form-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--mid-grey);
}
.form-note .req { color: var(--gold); }

/* Form success state */
.form-success {
  text-align: center;
  padding: 48px 32px;
  background: #f0faf4;
  border: 1.5px solid #b2dfca;
  border-radius: var(--border-radius);
  margin-top: 16px;
}
.form-success[hidden] { display: none; }
.form-success-icon {
  width: 60px; height: 60px;
  background: #d4f0e2;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success-icon svg { width: 28px; height: 28px; color: #1a7a4a; }
.form-success h3 { color: #0e5c36; margin-bottom: 10px; }
.form-success p { color: #2d6a4a; font-size: 0.94rem; line-height: 1.7; }
.form-success a { color: #0e5c36; font-weight: 600; }

/* Respond strip — "What happens after you submit" */
.respond-strip {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.respond-strip-text h2 { color: var(--white); margin-bottom: 14px; }
.respond-strip-text p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7; }
.respond-steps { display: flex; flex-direction: column; gap: 32px; }
.respond-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.respond-step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.respond-step-content h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.respond-step-content p { color: rgba(255,255,255,0.62); font-size: 0.9rem; line-height: 1.75; margin: 0; }

/* Page hero - contact */
.page-hero.contact {
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80');
}

/* Responsive additions */
@media (max-width: 900px) {
  .respond-strip { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 700px) {
  .contact-section { padding: 56px 0; }
  .respond-step-num { font-size: 1.8rem; width: 36px; }
}
