/* ============================================================
   HAWKS ESTIMATING GROUP — Shared Stylesheet
   styles.css
   ============================================================ */

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

:root {
  --navy:   #0f1e35;
  --navy2:  #1a2e4a;
  --navy3:  #243c5f;
  --amber:  #E8A020;
  --amber2: #f5b942;
  --light:  #f4f6f9;
  --white:  #ffffff;
  --gray:   #6b7a8d;
  --border: #e2e8f0;
  --dark: #0A0C0F;
  --dark-2: #111418;
  --dark-3: #181C22;
  --dark-4: #1F242C;
    --border: rgba(212,168,67,0.18);
    --text: #E8EAF0;
    --muted: #8A90A0;
	--gold: #E8A020;
    --gold-light: #f5b942;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}
body {
    font-size: 1.2rem;
    line-height: 30px;
}
/* ── NAV ── */
nav {
  position: relative; top: 0; left: 0; width: 100%; z-index: 1000;
  background: #fff; backdrop-filter: blur(10px);
  padding: 0 5%; display: flex; align-items: center; justify-content: space-between;
  height: 100px; border-bottom: 1px solid rgba(232,160,32,0.2);
}
#header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* 2. Admin bar adjustment — target wrapper instead of nav */
.logged-in.admin-bar #header-wrap {
  top: 32px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-icon {
  width: 42px; height: 42px;
  background: rgba(232,160,32,0.1); border: 1.5px solid rgba(232,160,32,0.4);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.nav-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 800;
  color: #fff; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1;
}
.nav-sub {
  font-size: 0.6rem; color: rgba(255,255,255,0.5);
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: #0f1e35; text-decoration: none;
  font-weight: 600; font-size: 1.08rem; letter-spacing: 0.05em;
  text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--amber); }
.nav-cta {
  background: var(--amber); color: var(--navy); font-weight: 800;
  padding: 10px 24px; border-radius: 4px; text-decoration: none;
  font-size: 1.08rem; letter-spacing: 0.05em; text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--amber2); transform: translateY(-1px); }

/* ── SECTION HELPERS ── */
section { padding: 100px 5%; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--amber); font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px;
}
.section-label::before { content: ''; width: 30px; height: 2px; background: var(--amber); }

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem); font-weight: 800;
  color: var(--navy); line-height: 1.1; text-transform: uppercase; margin-bottom: 20px;
}
h2 span { color: var(--amber); }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; }
.breadcrumb a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; transition: color .2s;
}
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.breadcrumb .current {
  color: var(--amber); font-size: 1rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* ── PAGE HERO (shared) ── */
.page-hero {
  padding: 190px 5% 100px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 55%, var(--navy3) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,160,32,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 800;
  color: var(--white); line-height: 1.0; text-transform: uppercase; margin-bottom: 24px;
}
.page-hero h1 span { color: var(--amber); }
.hero-inner { position: relative; z-index: 2; }

/* ── HERO BADGE ── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,32,0.15); border: 1px solid rgba(232,160,32,0.35);
  color: var(--amber); padding: 6px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--amber); border-radius: 50%; }

/* ── BUTTONS ── */
.btn-primary,
.btn-amber {
  background: var(--amber); color: var(--navy); font-weight: 800;
  padding: 16px 36px; border-radius: 4px; text-decoration: none;
  font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase;
  transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover,
.btn-amber:hover {
  background: var(--amber2); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.35);
}
.btn-secondary,
.btn-outline {
  background: transparent; color: var(--white); font-weight: 700;
  padding: 16px 36px; border-radius: 4px; text-decoration: none;
  font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.25); transition: all .2s;
}
.btn-secondary:hover,
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.btn-dark {
  background: var(--navy); color: var(--white); font-weight: 800;
  padding: 18px 40px; border-radius: 4px; text-decoration: none;
  font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase;
  transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-dark:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,30,53,0.3); }

/* ── FORM SHARED ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.form-group label {
  font-size: 1rem; font-weight: 700; color: var(--navy2);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 7px;
  font-family: 'Barlow', sans-serif; font-size: 1.1rem; color: var(--navy);
  background: var(--light); outline: none; transition: border-color .2s, background .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--amber); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0bac8; }

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 1.2rem; color: var(--navy2); font-weight: 500;
}
.check-list li::before {
  content: '✓'; background: var(--amber); color: var(--navy);
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900; flex-shrink: 0; margin-top: 1px;
}

/* ── CTA BAND (dark navy version) ── */
.cta-band {
    background: var(--amber);
    padding: 80px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,160,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-inner { position: relative; z-index: 2; }
.cta-band h2 { color: var(--navy); margin-bottom: 16px; }
.cta-band h2 span { color: var(--amber); }
.cta-band p {
  color: var(--navy2); font-size: 1.25rem;
  max-width: 500px; margin: 0 auto 36px; line-height: 1.7;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 60px 5% 28px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 44px;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 1.08rem; line-height: 1.8; margin-top: 16px; }
.footer-col h4 {
  color: var(--amber); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 1.08rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 1rem; }
.footer-tagline { color: var(--amber); font-weight: 700; font-size: 1rem; letter-spacing: 0.08em; }

/* ── STATS BAND (amber) ── */
.stats-band { background: var(--amber); padding: 70px 5%; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.sb-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 3.5rem;
  font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 8px;
}
.sb-label { color: var(--navy2); opacity: 0.7; font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================================
   index.html SPECIFIC
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, var(--navy3) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 190px 5% 60px;
}
/* .hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,160,32,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,0.06) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
} */
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 800;
  color: var(--white); line-height: 1.0; letter-spacing: -0.01em;
  margin-bottom: 24px; text-transform: uppercase;
}
.hero h1 span { color: var(--amber); }
.hero p { color: rgba(255,255,255,0.7); font-size: 1.15rem; line-height: 1.7; margin-bottom: 40px; max-width: 560px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: absolute; right: 5%; bottom: 10%; z-index: 2;
  display: flex; gap: 40px;
}
.stat { text-align: center; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-num span { color: var(--amber); }
.stat-label { color: rgba(255,255,255,0.5); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.hero-divider { width: 1px; background: rgba(255,255,255,0.15); height: 60px; align-self: center; }

.marquee-strip { background: var(--amber); padding: 14px 0; overflow: hidden; position: relative; }
.marquee-track { display: flex; gap: 0; animation: marquee 25s linear infinite; width: max-content; }
.marquee-item {
  white-space: nowrap; padding: 0 40px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy);
}
.marquee-item::after { content: '•'; margin-left: 40px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.whyus { background: var(--light); }
.whyus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.whyus-left h2 { margin-bottom: 24px; }
.whyus-right { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.metric-card {
  background: var(--white); border-radius: 8px; padding: 32px 24px;
  border-left: 4px solid var(--amber); box-shadow: 0 2px 16px rgba(15,30,53,0.08);
}
.metric-card:nth-child(2) { margin-top: 30px; }
.metric-card:nth-child(4) { margin-top: 30px; }
.metric-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--navy); }
.metric-num span { color: var(--amber); }
.metric-label { color: var(--gray); font-size: 1.08rem; margin-top: 6px; font-weight: 500; }

.services { background: var(--navy); }
.services .section-label,
.testimonials .section-label { color: var(--amber); }
.services h2,
.testimonials h2 { color: var(--white); }
.services-intro { color: rgba(255,255,255,0.6); font-size: 1.25rem; line-height: 1.7; max-width: 600px; margin-bottom: 60px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,0.05); border-radius: 8px; overflow: hidden; }
.service-card {
  background: rgba(255,255,255,0.03); padding: 40px 32px;
  transition: background .3s; cursor: pointer; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--amber); transition: width .3s;
}
.service-card:hover { background: rgba(232,160,32,0.07); }
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 52px; height: 52px; background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.3); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem;
}
.service-card h3 { color: var(--white); font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: rgba(255,255,255,0.5); font-size: 1.1rem; line-height: 1.7; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px; color: var(--amber);
  font-size: 1rem; font-weight: 700; text-decoration: none;
  margin-top: 16px; text-transform: uppercase; letter-spacing: 0.05em;
}
.service-link:hover { gap: 10px; }

.howitworks { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 60px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 36px; left: 12.5%; width: 75%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--amber) 0, var(--amber) 8px, transparent 8px, transparent 16px);
}
.step { text-align: center; position: relative; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--navy); color: var(--amber);
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; position: relative; z-index: 1; border: 3px solid var(--amber);
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.step p { color: var(--gray); font-size: 1.08rem; line-height: 1.6; }

.trades { background: var(--light); }
.trades-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 50px; }
.trades-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trade-pill {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  font-weight: 600; font-size: 1.1rem; color: var(--navy2);
  transition: all .2s; cursor: default;
}
.trade-pill:hover { border-color: var(--amber); color: var(--amber); box-shadow: 0 4px 16px rgba(232,160,32,0.12); transform: translateY(-2px); }
.trade-pill span { font-size: 1.3rem; }

.testimonials { background: var(--navy2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.05); border-radius: 8px; padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.08); position: relative;
}
.testi-card::before { content: '"'; position: absolute; top: 20px; right: 28px; font-family: Georgia, serif; font-size: 5rem; color: rgba(232,160,32,0.15); line-height: 1; }
.stars { color: var(--amber); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { color: rgba(255,255,255,0.7); font-size: 1.1rem; line-height: 1.8; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--amber); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--navy); font-size: 1.1rem; flex-shrink: 0; }
.testi-name { color: var(--white); font-weight: 700; font-size: 1.1rem; }
.testi-role { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* index CTA band (amber variant) */
.cta-band-amber {
  background: var(--amber); padding: 80px 5%;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-band-amber h2 { color: var(--navy); margin-bottom: 8px; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.cta-band-amber p { color: var(--navy2); opacity: 0.7; font-size: 1.1rem; }

.contact { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--gray); font-size: 1.25rem; line-height: 1.7; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 44px; height: 44px; background: var(--amber); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 4px; }
.contact-detail p { color: var(--navy); font-weight: 600; font-size: 1rem; margin: 0; }
.contact-form { background: var(--white); border-radius: 12px; padding: 48px 40px; box-shadow: 0 4px 40px rgba(15,30,53,0.08); }
.form-submit {
  width: 100%; background: var(--navy); color: var(--white); border: none;
  padding: 18px; border-radius: 6px; font-family: 'Barlow', sans-serif;
  font-size: 1rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all .2s; margin-top: 8px;
}
.form-submit:hover { background: var(--amber); color: var(--navy); }

/* ============================================================
   about.html SPECIFIC
   ============================================================ */
.about-page-hero { min-height: 88vh; display: flex; align-items: center; }
.about-page-hero::after {
  content: '🦅'; position: absolute; right: 3%; bottom: -30px;
  font-size: 24rem; opacity: 0.035; line-height: 1; pointer-events: none; transform: scaleX(-1);
}
.hero-stats-row { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.hs-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.6rem; font-weight: 800; color: var(--white); line-height: 1; }
.hs-num span { color: var(--amber); }
.hs-label { color: rgba(255,255,255,0.45); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.hs-div { width: 1px; background: rgba(255,255,255,0.12); height: 50px; }

.story { padding: 100px 5%; background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-text p { color: var(--gray); font-size: 1.25rem; line-height: 1.85; margin-bottom: 22px; }
.story-text strong { color: var(--navy); }
.story-cards { display: flex; flex-direction: column; gap: 20px; }
.sc { background: var(--light); border-radius: 10px; padding: 28px 26px; border-left: 4px solid var(--amber); display: flex; align-items: flex-start; gap: 18px; }
.sc-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.sc-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 800; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.sc-text { color: var(--gray); font-size: 1.08rem; line-height: 1.65; }

.values { padding: 100px 5%; background: var(--navy); }
.values .section-label { color: var(--amber); }
.values h2 { color: var(--white); }
.values-intro { color: rgba(255,255,255,0.55); font-size: 1.25rem; line-height: 1.75; max-width: 580px; margin-bottom: 60px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vc {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 36px 28px; position: relative; overflow: hidden; transition: background .3s, border-color .3s;
}
.vc:hover { background: rgba(232,160,32,0.07); border-color: rgba(232,160,32,0.3); }
.vc::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.vc:hover::before { transform: scaleX(1); }
.vc-icon { font-size: 2.2rem; margin-bottom: 18px; }
.vc-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.vc-text { color: rgba(255,255,255,0.5); font-size: 1.08rem; line-height: 1.7; }

.timeline-sec { padding: 100px 5%; background: var(--light); }
.timeline { position: relative; margin-top: 60px; padding-left: 40px; max-width: 800px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--amber), rgba(232,160,32,0.1)); }
.tl { position: relative; margin-bottom: 48px; }
.tl:last-child { margin-bottom: 0; }
.tl-dot { position: absolute; left: -48px; top: 5px; width: 16px; height: 16px; background: var(--amber); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--amber); }
.tl-year { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 800; color: var(--amber); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.tl-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.tl-text { color: var(--gray); font-size: 1.1rem; line-height: 1.7; }

.team { padding: 100px 5%; background: var(--white); }
.team-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 60px; }
.team-header p { color: var(--gray); font-size: 1.25rem; line-height: 1.75; max-width: 460px; }
.leadership-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.directors-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.team-card { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); transition: transform .3s, box-shadow .3s; background: var(--white); }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(15,30,53,0.12); }
.team-card.featured { border-color: rgba(232,160,32,0.4); }
.card-avatar {
  height: 240px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  display: flex; align-items: center; justify-content: center;
}
.card-avatar.sm { height: 200px; }
.card-avatar::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,160,32,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,0.07) 1px, transparent 1px);
  background-size: 30px 30px;
}
.avatar-init {
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(232,160,32,0.12); border: 3px solid var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 2.6rem;
  font-weight: 800; color: var(--amber); position: relative; z-index: 1;
}
.avatar-init.sm { width: 84px; height: 84px; font-size: 2.1rem; }
.role-pill {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--navy);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; white-space: nowrap; z-index: 2;
}
.role-pill.dir { background: rgba(232,160,32,0.15); color: var(--amber); border: 1px solid rgba(232,160,32,0.4); }
.card-body { padding: 28px 26px; }
.card-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 800; text-transform: uppercase; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.card-role-label { color: var(--amber); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.card-bio { color: var(--gray); font-size: 1.08rem; line-height: 1.75; margin-bottom: 20px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.ctag { background: var(--light); color: var(--navy2); border: 1px solid var(--border); padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.card-social { display: flex; gap: 10px; }
.cs-btn { width: 34px; height: 34px; background: var(--light); border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.08rem; text-decoration: none; transition: all .2s; }
.cs-btn:hover { background: var(--amber); border-color: var(--amber); }

.tools { padding: 90px 5%; background: var(--light); }
.tools-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px; }
.tool-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 24px 16px; text-align: center; transition: all .2s; }
.tool-card:hover { border-color: var(--amber); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(15,30,53,0.08); }
.tool-icon { font-size: 2rem; margin-bottom: 10px; }
.tool-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.tool-type { color: var(--gray); font-size: 0.75rem; margin-top: 4px; }

/* ============================================================
   contact.html SPECIFIC
   ============================================================ */
.contact-page-hero { padding: 140px 5% 90px; }
.contact-page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,160,32,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,0.05) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.contact-page-hero .hero-inner { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 40px; }
.hero-pills { display: flex; flex-direction: column; gap: 14px; }
.hero-pill {
  display: flex; align-items: center; gap: 14px;
  background: rgb(5 4 4 / 42%); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 16px 22px; text-decoration: none;
  transition: border-color .2s, background .2s; min-width: 280px;
}
.hero-pill:hover { border-color: rgba(232,160,32,0.5); background: rgba(232,160,32,0.07); }
.hp-icon { width: 40px; height: 40px; background: var(--amber); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.hp-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.hp-value { font-size: 1rem; color: var(--white); font-weight: 700; }

.contact-main { padding: 90px 5%; background: var(--light); }
.contact-main-grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: 60px; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-intro { color: var(--gray); font-size: 1rem; line-height: 1.8; margin-bottom: 8px; }
.info-card {
  background: var(--white); border-radius: 10px; padding: 24px 22px;
  display: flex; align-items: flex-start; gap: 16px;
  border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(15,30,53,0.05);
  transition: box-shadow .2s, transform .2s;
}
.info-card:hover { box-shadow: 0 6px 24px rgba(15,30,53,0.1); transform: translateY(-2px); }
.ic-icon { width: 46px; height: 46px; background: var(--amber); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.ic-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 5px; }
.ic-value { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.4; }
.ic-sub { font-size: 1rem; color: var(--gray); margin-top: 3px; }
.response-badge { background: var(--navy); border-radius: 10px; padding: 22px 24px; display: flex; align-items: center; gap: 16px; }
.rb-dot { width: 10px; height: 10px; background: #4ade80; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(74,222,128,0.25); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 3px rgba(74,222,128,0.25)} 50%{box-shadow:0 0 0 6px rgba(74,222,128,0.1)} }
.rb-text { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.5; }
.rb-text strong { color: var(--white); font-weight: 700; }
.social-row { display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; text-decoration: none; transition: all .2s;
}
.social-btn:hover { background: var(--amber); border-color: var(--amber); transform: translateY(-2px); }

.form-panel { background: var(--white); border-radius: 14px; padding: 52px 46px; box-shadow: 0 6px 48px rgba(15,30,53,0.1); }
.form-panel h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.9rem; font-weight: 800; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.form-panel h3 span { color: var(--amber); }
.form-panel .subtitle { color: var(--gray); font-size: 1.1rem; margin-bottom: 36px; line-height: 1.6; }

.form-progress { display: flex; gap: 0; margin-bottom: 36px; border-radius: 6px; overflow: hidden; background: var(--border); }
.fp-step { flex: 1; padding: 10px; text-align: center; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); background: var(--border); transition: all .3s; cursor: pointer; border-bottom: 3px solid transparent; }
.fp-step.active { background: var(--navy); color: var(--white); }
.fp-step.done { background: var(--amber); color: var(--navy); }

.form-step { display: none; }
.form-step.visible { display: block; }

.budget-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.budget-opt { border: 1.5px solid var(--border); border-radius: 7px; padding: 12px 16px; cursor: pointer; transition: all .2s; text-align: center; font-weight: 600; font-size: 0.88rem; color: var(--navy2); background: var(--light); }
.budget-opt:hover, .budget-opt.selected { border-color: var(--amber); background: rgba(232,160,32,0.08); color: var(--navy); }
.budget-opt.selected { background: var(--amber); color: var(--navy); border-color: var(--amber); }

.file-upload-area { border: 2px dashed var(--border); border-radius: 8px; padding: 32px 20px; text-align: center; cursor: pointer; transition: border-color .2s, background .2s; background: var(--light); }
.file-upload-area:hover, .file-upload-area.drag-over { border-color: var(--amber); background: rgba(232,160,32,0.04); }
.file-upload-area.drag-over { background: rgba(232,160,32,0.08); }
.fu-icon { font-size: 2rem; margin-bottom: 10px; }
.fu-title { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: 1.1rem; }
.fu-sub { color: var(--gray); font-size: 1rem; }
.fu-sub span { color: var(--amber); font-weight: 700; }
.file-list { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.file-item { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 8px 14px; font-size: 1rem; color: var(--navy2); font-weight: 600; }
.file-item::before { content: '📎'; }

.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 14px; }
.btn-next { background: var(--navy); color: var(--white); border: none; padding: 15px 36px; border-radius: 6px; font-family: 'Barlow', sans-serif; font-size: 1.1rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 8px; }
.btn-next:hover { background: var(--amber); color: var(--navy); }
.btn-back { background: transparent; color: var(--gray); border: 1.5px solid var(--border); padding: 15px 28px; border-radius: 6px; font-family: 'Barlow', sans-serif; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: all .2s; }
.btn-back:hover { border-color: var(--navy); color: var(--navy); }
.btn-submit { background: var(--amber); color: var(--navy); border: none; padding: 15px 40px; border-radius: 6px; font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 8px; }
.btn-submit:hover { background: var(--amber2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.35); }
.step-counter { font-size: 1rem; color: var(--gray); font-weight: 600; }

.form-success { display: none; text-align: center; padding: 40px 20px; }
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.form-success h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.form-success p { color: var(--gray); font-size: 1rem; line-height: 1.7; max-width: 380px; margin: 0 auto; }

.trust-strip { background: var(--navy); padding: 60px 5%; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,0.05); border-radius: 8px; overflow: hidden; }
.trust-item { padding: 36px 28px; background: rgba(255,255,255,0.02); text-align: center; }
.ti-icon { font-size: 2rem; margin-bottom: 14px; }
.ti-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; }
.ti-num span { color: var(--amber); }
.ti-label { color: rgba(255,255,255,0.45); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }

.faq-section { padding: 90px 5%; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.faq-item { background: var(--light); border-radius: 8px; border: 1px solid var(--border); overflow: hidden; }
.faq-q { padding: 22px 24px; font-weight: 700; font-size: 1.08rem; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background .2s; user-select: none; }
.faq-q:hover { background: rgba(232,160,32,0.06); }
.faq-q .arrow { color: var(--amber); font-size: 1.1rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; padding: 0 24px; color: var(--gray); font-size: 0.92rem; line-height: 1.75; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 22px; }

/* ============================================================
   services.html SPECIFIC
   ============================================================ */
.service-nav {
  position: sticky; top: 72px; z-index: 900;
  background: var(--white); border-bottom: 2px solid var(--border);
  padding: 0 5%; overflow-x: auto;
  display: flex; gap: 0;
  box-shadow: 0 2px 16px rgba(15,30,53,0.07);
}
.service-nav::-webkit-scrollbar { height: 0; }
.snav-item {
  display: flex; align-items: center; gap: 8px;
  padding: 18px 24px; text-decoration: none;
  color: var(--gray); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  white-space: nowrap; transition: all .2s;
}
.snav-item:hover { color: var(--navy); border-bottom-color: var(--amber); }
.snav-item.active { color: var(--navy); border-bottom-color: var(--amber); }
.snav-icon { font-size: 1rem; }

.service-section { padding: 100px 5%; scroll-margin-top: 130px; }
.service-section:nth-child(even) { background: var(--light); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.col-text p { color: var(--gray); font-size: 1.25rem; line-height: 1.8; margin-bottom: 28px; }

.visual-panel {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: 12px; padding: 48px 40px; position: relative; overflow: hidden;
  min-height: 420px; display: flex; flex-direction: column; justify-content: space-between;
}
.visual-panel::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,160,32,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.visual-panel-icon { font-size: 4rem; position: relative; z-index: 1; margin-bottom: 20px; }
.visual-panel-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--white); text-transform: uppercase; position: relative; z-index: 1; margin-bottom: 12px; }
.visual-panel-sub { color: rgba(255,255,255,0.5); font-size: 1.08rem; line-height: 1.6; position: relative; z-index: 1; }
.visual-tags { display: flex; flex-wrap: wrap; gap: 8px; position: relative; z-index: 1; margin-top: 24px; }
.tag { background: rgba(232,160,32,0.15); border: 1px solid rgba(232,160,32,0.3); color: var(--amber); padding: 6px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.visual-stat-row { display: flex; gap: 32px; position: relative; z-index: 1; margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.vs { text-align: left; }
.vs-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.vs-num span { color: var(--amber); }
.vs-label { color: rgba(255,255,255,0.45); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.ps { background: var(--white); border-radius: 8px; padding: 28px 24px; border-top: 3px solid var(--amber); box-shadow: 0 2px 16px rgba(15,30,53,0.06); }
.ps-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: var(--amber); margin-bottom: 10px; }
.ps h4 { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy); margin-bottom: 8px; }
.ps p { color: var(--gray); font-size: 0.88rem; line-height: 1.65; }

.deliverables { margin-top: 50px; }
.deliverables h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; text-transform: uppercase; color: var(--navy); margin-bottom: 20px; }
.del-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.del-item { display: flex; align-items: center; gap: 12px; background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 14px 18px; font-size: 1.08rem; font-weight: 600; color: var(--navy2); }
.service-section:nth-child(odd) .del-item { background: var(--light); }
.del-item::before { content: '→'; color: var(--amber); font-weight: 900; font-size: 1rem; flex-shrink: 0; }

.software-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.sw-pill { background: var(--navy); color: rgba(255,255,255,0.75); padding: 7px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; }

/* services CTA (amber) */
.cta-band-services {
  background: var(--amber); padding: 80px 5%;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-band-services h2 { color: var(--navy); margin-bottom: 8px; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.cta-band-services p { color: var(--navy2); opacity: 0.7; font-size: 1.25rem; }

/* ============================================================
   reviews.html SPECIFIC
   ============================================================ */
.filter-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 20px 5%; display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  position: sticky; top: 72px; z-index: 900;
  box-shadow: 0 2px 12px rgba(15,30,53,0.06);
}
.filter-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-right: 4px; }
.filter-btn { padding: 8px 18px; border-radius: 100px; border: 1.5px solid var(--border); background: var(--white); color: var(--navy2); font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all .2s; white-space: nowrap; }
.filter-btn:hover { border-color: var(--amber); color: var(--navy); }
.filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.filter-count { margin-left: auto; font-size: 1rem; color: var(--gray); font-weight: 600; }

.rating-overview { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.big-rating { text-align: center; }
.br-num { font-family: 'Barlow Condensed', sans-serif; font-size: 5.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.br-stars { color: var(--amber); font-size: 1.6rem; letter-spacing: 4px; margin: 6px 0; }
.br-label { color: rgba(255,255,255,0.45); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; }
.rating-divider { width: 1px; height: 90px; background: rgba(255,255,255,0.12); }
.rating-bars { flex: 1; min-width: 260px; display: flex; flex-direction: column; gap: 10px; }
.rb-row { display: flex; align-items: center; gap: 12px; }
.rb-star { color: rgba(255,255,255,0.55); font-size: 1rem; font-weight: 700; width: 36px; flex-shrink: 0; }
.rb-track { flex: 1; height: 7px; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden; }
.rb-fill { height: 100%; background: var(--amber); border-radius: 100px; }
.rb-count { color: rgba(255,255,255,0.4); font-size: 0.8rem; font-weight: 600; width: 28px; text-align: right; flex-shrink: 0; }
.rating-summary { display: flex; flex-direction: column; gap: 16px; }
.rs-item { display: flex; align-items: center; gap: 14px; }
.rs-label { color: rgba(255,255,255,0.5); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; width: 120px; flex-shrink: 0; }
.rs-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 100px; overflow: hidden; }
.rs-bar-fill { height: 100%; background: var(--amber); border-radius: 100px; }
.rs-pct { color: var(--amber); font-size: 1rem; font-weight: 700; width: 36px; text-align: right; }

.featured-section { padding: 90px 5%; background: var(--light); }
.featured-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; margin-top: 48px; }
.review-featured { background: var(--navy); border-radius: 12px; padding: 44px 40px; position: relative; overflow: hidden; }
.review-featured::before { content: '"'; position: absolute; top: 10px; right: 28px; font-family: Georgia, serif; font-size: 8rem; color: rgba(232,160,32,0.1); line-height: 1; }
.rf-stars { color: var(--amber); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 20px; }
.rf-quote { color: rgba(255,255,255,0.8); font-size: 1.1rem; line-height: 1.8; margin-bottom: 28px; font-style: italic; position: relative; z-index: 1; }
.rf-author { display: flex; align-items: center; gap: 16px; }
.rf-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--amber); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--navy); flex-shrink: 0; }
.rf-name { color: var(--white); font-weight: 700; font-size: 1rem; }
.rf-role { color: rgba(255,255,255,0.45); font-size: 1rem; margin-top: 2px; }
.rf-tag { margin-top: 6px; display: inline-block; background: rgba(232,160,32,0.15); border: 1px solid rgba(232,160,32,0.3); color: var(--amber); padding: 3px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.featured-side { display: flex; flex-direction: column; gap: 28px; }
.review-card-sm { background: var(--white); border-radius: 10px; padding: 28px 26px; border: 1px solid var(--border); position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.review-card-sm:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(15,30,53,0.09); }
.review-card-sm::before { content: '"'; position: absolute; top: 8px; right: 20px; font-family: Georgia, serif; font-size: 4rem; color: rgba(232,160,32,0.1); line-height: 1; }
.rc-stars { color: var(--amber); font-size: 1.08rem; letter-spacing: 2px; margin-bottom: 12px; }
.rc-quote { color: var(--gray); font-size: 0.92rem; line-height: 1.75; margin-bottom: 18px; }
.rc-author { display: flex; align-items: center; gap: 12px; }
.rc-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; color: var(--amber); flex-shrink: 0; }
.rc-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.rc-role { color: var(--gray); font-size: 0.78rem; margin-top: 2px; }
.rc-service { margin-top: 8px; display: inline-block; background: var(--light); border: 1px solid var(--border); color: var(--navy2); padding: 3px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 600; }

.all-reviews { padding: 90px 5%; background: var(--white); }
.reviews-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 48px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--light); border-radius: 10px; padding: 30px 26px; border: 1px solid var(--border); position: relative; overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; display: flex; flex-direction: column; }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(15,30,53,0.1); border-color: rgba(232,160,32,0.3); }
.review-card.hidden { display: none; }
.review-card::before { content: '"'; position: absolute; top: 10px; right: 20px; font-family: Georgia, serif; font-size: 5rem; color: rgba(232,160,32,0.1); line-height: 1; }
.rv-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.rv-stars { color: var(--amber); font-size: 1.08rem; letter-spacing: 2px; }
.rv-service { background: var(--white); border: 1px solid var(--border); color: var(--gray); padding: 4px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 600; white-space: nowrap; }
.rv-quote { color: var(--gray); font-size: 0.92rem; line-height: 1.78; flex: 1; margin-bottom: 22px; }
.rv-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.rv-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--amber); flex-shrink: 0; }
.rv-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; line-height: 1.2; }
.rv-role { color: var(--gray); font-size: 0.78rem; margin-top: 2px; }
.rv-date { color: rgba(107,122,141,0.6); font-size: 0.75rem; margin-top: 10px; }

.load-more-wrap { text-align: center; margin-top: 48px; }
.btn-load { background: var(--white); color: var(--navy); border: 2px solid var(--border); font-family: 'Barlow', sans-serif; font-size: 1.1rem; font-weight: 700; padding: 14px 36px; border-radius: 6px; cursor: pointer; transition: all .2s; letter-spacing: 0.05em; text-transform: uppercase; }
.btn-load:hover { border-color: var(--amber); color: var(--amber); }

.by-service { padding: 90px 5%; background: var(--navy); }
.by-service .section-label { color: var(--amber); }
.by-service h2 { color: var(--white); margin-bottom: 48px; }
.service-ratings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sr-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 28px 24px; transition: background .3s, border-color .3s; }
.sr-card:hover { background: rgba(232,160,32,0.07); border-color: rgba(232,160,32,0.25); }
.sr-icon { font-size: 1.8rem; margin-bottom: 14px; }
.sr-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.sr-stars { color: var(--amber); font-size: 1.08rem; letter-spacing: 2px; margin-bottom: 8px; }
.sr-score { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: var(--white); }
.sr-score span { color: var(--amber); font-size: 1rem; }
.sr-count { color: rgba(255,255,255,0.35); font-size: 0.8rem; margin-top: 4px; }

.quote-band { background: var(--amber); padding: 80px 5%; }
.qb-inner { max-width: 840px; margin: 0 auto; text-align: center; }
.qb-quote { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--navy); text-transform: uppercase; line-height: 1.2; margin-bottom: 28px; }
.qb-author { display: flex; align-items: center; gap: 14px; justify-content: center; }
.qb-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--amber); }
.qb-name { font-weight: 800; color: var(--navy); font-size: 1rem; text-align: left; }
.qb-role { color: var(--navy2); opacity: 0.65; font-size: 1rem; }

.leave-review { padding: 90px 5%; background: var(--light); }
.lr-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 70px; align-items: start; }
.lr-info h2 { margin-bottom: 16px; }
.lr-info p { color: var(--gray); font-size: 1.25rem; line-height: 1.8; margin-bottom: 28px; }
.lr-note { background: var(--white); border-left: 4px solid var(--amber); border-radius: 6px; padding: 18px 20px; color: var(--navy2); font-size: 1.08rem; line-height: 1.65; }
.review-form { background: var(--white); border-radius: 12px; padding: 44px 38px; box-shadow: 0 4px 32px rgba(15,30,53,0.08); }
.review-form h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.7rem; font-weight: 800; text-transform: uppercase; color: var(--navy); margin-bottom: 28px; }
.review-form h3 span { color: var(--amber); }

.star-picker { display: flex; gap: 8px; margin-bottom: 4px; }
.sp-star { font-size: 1.8rem; cursor: pointer; color: var(--border); transition: color .15s, transform .15s; }
.sp-star.active, .sp-star:hover { color: var(--amber); transform: scale(1.15); }
.star-hint { font-size: 0.8rem; color: var(--gray); margin-top: 6px; font-weight: 600; }

/* ============================================================
   quote-popup.html SPECIFIC
   ============================================================ */
.qp-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,18,32,0.82); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s cubic-bezier(.4,0,.2,1);
}
.qp-overlay.open { opacity: 1; pointer-events: all; }
.qp-modal {
  width: 100%; max-width: 900px; max-height: 92vh; border-radius: 16px;
  overflow: hidden; display: grid; grid-template-columns: 300px 1fr;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06);
  transform: translateY(28px) scale(0.97);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
}
.qp-overlay.open .qp-modal { transform: translateY(0) scale(1); }

.qp-sidebar {
  background: linear-gradient(160deg, #0f1e35 0%, #1a2e4a 60%, #243c5f 100%);
  padding: 40px 32px; display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.qp-sidebar::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,160,32,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.qp-sidebar::after { content: '🦅'; position: absolute; bottom: -20px; right: -10px; font-size: 9rem; opacity: 0.06; line-height: 1; pointer-events: none; transform: scaleX(-1); }
.qp-sidebar-inner { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; }
.qp-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 36px; }
.qp-logo-icon { width: 38px; height: 38px; background: rgba(232,160,32,0.12); border: 1.5px solid rgba(232,160,32,0.4); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.qp-logo-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800; color: #fff; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.1; }
.qp-logo-sub { font-size: 0.55rem; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.qp-sidebar h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.7rem; font-weight: 800; color: #fff; text-transform: uppercase; line-height: 1.1; margin-bottom: 12px; }
.qp-sidebar h2 span { color: #E8A020; }
.qp-sidebar p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; margin-bottom: 32px; }
.qp-trust { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.qp-trust-item { display: flex; align-items: center; gap: 12px; }
.qp-trust-dot { width: 8px; height: 8px; background: #E8A020; border-radius: 50%; flex-shrink: 0; }
.qp-trust-text { color: rgba(255,255,255,0.7); font-size: 1rem; font-weight: 600; }
.qp-stats { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; margin-top: auto; }
.qp-stat { flex: 1; text-align: center; }
.qp-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.08); }
.qp-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1; }
.qp-stat-num span { color: #E8A020; }
.qp-stat-label { color: rgba(255,255,255,0.35); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; }

.qp-form-panel { background: #fff; display: flex; flex-direction: column; overflow-y: auto; }
.qp-close {
  position: absolute; top: 16px; right: 18px; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all .2s; z-index: 10;
}
.qp-close:hover { background: rgba(232,160,32,0.2); color: #E8A020; border-color: rgba(232,160,32,0.4); }

.qp-progress { display: flex; border-bottom: 1px solid #e2e8f0; background: #f4f6f9; }
.qp-step-tab {
  flex: 1; padding: 14px 8px; text-align: center;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
  color: #6b7a8d; background: transparent; border: none; cursor: default;
  border-bottom: 3px solid transparent; margin-bottom: -1px;
  transition: all .25s; display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: 'Barlow', sans-serif;
}
.qp-step-tab .step-num { width: 20px; height: 20px; border-radius: 50%; background: #e2e8f0; color: #6b7a8d; font-size: 0.7rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .25s; }
.qp-step-tab.active { color: #0f1e35; border-bottom-color: #E8A020; }
.qp-step-tab.active .step-num { background: #E8A020; color: #0f1e35; }
.qp-step-tab.done { color: #0f1e35; }
.qp-step-tab.done .step-num { background: #0f1e35; color: #E8A020; }

.qp-form-body { padding: 32px 36px; flex: 1; }
.qp-form-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800; text-transform: uppercase; color: #0f1e35; margin-bottom: 4px; }
.qp-form-body h3 span { color: #E8A020; }
.qp-form-body .step-sub { color: #6b7a8d; font-size: 0.88rem; line-height: 1.6; margin-bottom: 24px; }
.qp-step { display: none; }
.qp-step.visible { display: block; }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.f-group label { font-size: 0.78rem; font-weight: 700; color: #1a2e4a; text-transform: uppercase; letter-spacing: 0.06em; }
.f-group input, .f-group select, .f-group textarea { padding: 11px 14px; border: 1.5px solid #e2e8f0; border-radius: 7px; font-family: 'Barlow', sans-serif; font-size: 0.92rem; color: #0f1e35; background: #f4f6f9; outline: none; transition: border-color .2s, background .2s; width: 100%; }
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: #E8A020; background: #fff; box-shadow: 0 0 0 3px rgba(232,160,32,0.1); }
.f-group textarea { resize: vertical; min-height: 90px; }
.f-group input::placeholder, .f-group textarea::placeholder { color: #b0bac8; }

.upload-zone { border: 2px dashed #e2e8f0; border-radius: 10px; padding: 28px 20px; text-align: center; cursor: pointer; background: #f4f6f9; transition: all .2s; position: relative; margin-bottom: 16px; }
.upload-zone:hover, .upload-zone.drag { border-color: #E8A020; background: rgba(232,160,32,0.04); }
.upload-zone input[type="file"] { display: none; }
.uz-icon { font-size: 2.2rem; margin-bottom: 8px; }
.uz-title { font-weight: 700; color: #0f1e35; font-size: 1.1rem; margin-bottom: 4px; }
.uz-title span { color: #E8A020; text-decoration: underline; cursor: pointer; }
.uz-sub { color: #6b7a8d; font-size: 0.78rem; }

.qp-file-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.qp-file-item { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #e2e8f0; border-radius: 7px; padding: 9px 14px; font-size: 0.83rem; color: #1a2e4a; font-weight: 600; animation: slideIn .2s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.qp-file-icon { font-size: 1.1rem; flex-shrink: 0; }
.qp-file-name { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.qp-file-size { color: #6b7a8d; font-size: 0.75rem; font-weight: 500; flex-shrink: 0; }
.qp-file-remove { cursor: pointer; color: #6b7a8d; font-size: 1rem; flex-shrink: 0; transition: color .15s; }
.qp-file-remove:hover { color: #e53e3e; }

.upload-progress { margin-top: 6px; }
.up-bar-track { height: 4px; background: #e2e8f0; border-radius: 100px; overflow: hidden; }
.up-bar-fill { height: 100%; background: linear-gradient(90deg, #E8A020, #f5b942); border-radius: 100px; width: 0%; transition: width .4s ease; }
.up-label { font-size: 0.72rem; color: #6b7a8d; font-weight: 600; margin-top: 4px; }

.urgency-row { display: flex; align-items: center; gap: 10px; background: rgba(232,160,32,0.07); border: 1px solid rgba(232,160,32,0.25); border-radius: 8px; padding: 12px 14px; cursor: pointer; margin-bottom: 16px; }
.urgency-row input[type="checkbox"] { accent-color: #E8A020; width: 16px; height: 16px; cursor: pointer; }
.urgency-label { font-size: 1rem; font-weight: 700; color: #0f1e35; }
.urgency-sub { font-size: 0.75rem; color: #6b7a8d; margin-top: 1px; }

.qp-form-nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 36px; border-top: 1px solid #e2e8f0; background: #fafbfc; gap: 12px; }
.qp-counter { font-size: 0.78rem; font-weight: 700; color: #6b7a8d; letter-spacing: 0.06em; text-transform: uppercase; }
.qp-btn-back { background: transparent; color: #6b7a8d; border: 1.5px solid #e2e8f0; padding: 11px 22px; border-radius: 6px; font-family: 'Barlow', sans-serif; font-size: 0.88rem; font-weight: 700; cursor: pointer; transition: all .2s; }
.qp-btn-back:hover { border-color: #0f1e35; color: #0f1e35; }
.qp-btn-next { background: #0f1e35; color: #fff; border: none; padding: 12px 28px; border-radius: 6px; font-family: 'Barlow', sans-serif; font-size: 1.08rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 8px; }
.qp-btn-next:hover { background: #E8A020; color: #0f1e35; }
.qp-btn-submit { background: #E8A020; color: #0f1e35; border: none; padding: 12px 28px; border-radius: 6px; font-family: 'Barlow', sans-serif; font-size: 1.08rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 8px; }
.qp-btn-submit:hover { background: #f5b942; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,160,32,0.35); }

.qp-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 40px; flex: 1; }
.qp-success.show { display: flex; }
.success-ring { width: 80px; height: 80px; border-radius: 50%; background: rgba(232,160,32,0.1); border: 3px solid #E8A020; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; margin-bottom: 24px; animation: popIn .4s cubic-bezier(.34,1.56,.64,1); }
@keyframes popIn { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.qp-success h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; text-transform: uppercase; color: #0f1e35; margin-bottom: 10px; }
.qp-success h3 span { color: #E8A020; }
.qp-success p { color: #6b7a8d; font-size: 1.1rem; line-height: 1.75; max-width: 340px; margin-bottom: 28px; }
.success-details { background: #f4f6f9; border-radius: 10px; padding: 18px 24px; width: 100%; max-width: 360px; margin-bottom: 24px; }
.sd-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid #e2e8f0; font-size: 1rem; }
.sd-row:last-child { border-bottom: none; }
.sd-label { color: #6b7a8d; font-weight: 600; }
.sd-val { color: #0f1e35; font-weight: 700; }
.btn-close-success { background: #0f1e35; color: #fff; border: none; padding: 13px 30px; border-radius: 6px; font-family: 'Barlow', sans-serif; font-size: 1.08rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all .2s; }
.btn-close-success:hover { background: #E8A020; color: #0f1e35; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .leadership-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { position: static; margin-top: 40px; justify-content: flex-start; }
  .hero-content { max-width: 100%; }
  .whyus-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trades-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-main-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-side { display: grid; grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .service-ratings { grid-template-columns: repeat(2, 1fr); }
  .lr-grid { grid-template-columns: 1fr; gap: 40px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .contact-page-hero .hero-inner { flex-direction: column; align-items: flex-start; }
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
}
.page-hero > .hero-inner > p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 44px;
}

.page-hero > .hero-inner .hero-stats {
    position: relative;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    gap: 40px;
}
.nav-logo img {
    height: 80px;
}

.trade-pill > img {
    height: 40px;
    width: 40px;
}

.vc-icon {
    background: #ffffff;
    display: inline-block;
    padding: 14px;
    border-radius: 100%;
	    width: 70px;
    height: 70px;
    text-align: center;
}
.tools-grid .tool-card:nth-child(3) .tool-icon img {
    filter: brightness(7.5);
}

.tool-icon {
    background: rgba(15, 30, 53, 0.97);
    display: inline-block;
    padding: 14px;
    border-radius: 100%;
    width: 70px;
    height: 70px;
    text-align: center;
}
div#ann-bar {
    background: #e8a020;
    padding: 10px 5%;
    text-align: center;
}
.sc-icon img {
    height: 60px;
    width: 50px;
}
.page-template-template-contact .page-hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 520px;
}
.page-template-template-services .page-hero p{
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 650px;
}

.page-template-template-services ul.check-list {
    margin-bottom: 25px;
}
.page-template-template-contact .hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 40px;
	max-width:100%;
}
.page-template-template-reviews .hero-inner{
	max-width:100%;
}
.ic-value a {
    color: var(--navy);
}
.br-total {
    color: rgba(255, 255, 255, 0.45);
}
.logged-in.admin-bar nav#service-nav {
    top: 100px;
}
.social-btn img {
    width: 30px;
    height: 30px;
}
.ti-icon img {
    width: 50px;
    height: 50px;
}
.service-section ul {
    margin-bottom: 25px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.service-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--navy2);
    font-weight: 500;
}
.service-section ul li::before {
    content: '✓';
    background: var(--amber);
    color: var(--navy);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}
.sw-ticker-wrap {
  overflow: hidden;
}

.sw-ticker-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin: 0 0 20px;
}

/* Clip window — hides overflow left/right */
.sw-ticker-outer {
  overflow: hidden;
  width: 100%;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* The moving strip */
.sw-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: sw-scroll 28s linear infinite;
}

/* Pause on hover */
.sw-ticker-outer:hover .sw-ticker-track {
  animation-play-state: paused;
}

/* Each logo item */
.sw-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s ease;
  cursor: default;
	margin: 0 12px;
	    background: #f5f6f9;
}
.service-section:nth-child(even) .sw-logo-item {
    background: #fff;
}
.brandfoolo img {
    height: 80px;
    filter: brightness(13.5);
}
.sw-logo-item:hover {
  background: #ffffff;
}

/* Logo image — white tinted by default */
.sw-logo-item img {
  height: 48px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: filter 0.25s ease, opacity 0.25s ease;
  display: block;
  
}

/* On hover: restore original colour */
.sw-logo-item:hover img {
  filter: none;
  opacity: 1;
}

/* Scroll keyframes */
@keyframes sw-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .sw-ticker-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}
.qp-modal{
	overflow-y:scroll;
}
.contact-detail a {
    color: #000;
}
.success-msg{
background:#e6ffed;
color:#0f5132;
padding:12px;
margin-top:15px;
border-radius:6px;
animation:fadeUp .5s ease;
}

.error-msg{
background:#ffe6e6;
color:#842029;
padding:12px;
margin-top:15px;
border-radius:6px;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(10px);
}
to{
opacity:1;
transform:translateY(0);
}
}
.nav-toggle{
display:none;
flex-direction:column;
cursor:pointer;
gap:5px;
}

.nav-toggle span{
width:25px;
height:3px;
background:#000;
display:block;
}
.hero-video{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* optional dark overlay */
.hero-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 0;
}
.ann-track{
  display:flex;
  width:max-content;
  animation: scrollText 20s linear infinite;
}

.ann-track span{
  white-space:nowrap;
  padding-right:100px;
  font-weight:600;
}
.ann-track b {
    font-weight: 700;
}
@keyframes scrollText{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  section { padding: 70px 4%; }
  .values-grid { grid-template-columns: 1fr; }
  .directors-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hs-div { display: none; }
  .hero-stats-row { gap: 24px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .whyus-right { grid-template-columns: 1fr 1fr; }
  .metric-card:nth-child(2), .metric-card:nth-child(4) { margin-top: 0; }
  .cta-band-amber { flex-direction: column; text-align: center; }
  .form-panel { padding: 32px 24px; }
  .budget-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-pills { width: 100%; }
  .hero-pill { min-width: unset; }
  .reviews-grid { grid-template-columns: 1fr; }
  .service-ratings { grid-template-columns: 1fr; }
  .featured-side { grid-template-columns: 1fr; }
  .filter-bar { gap: 8px; }
  .rating-overview { gap: 28px; }
  .rating-divider { display: none; }
  .cta-btns { flex-direction: column; align-items: center; }
  .process-steps { grid-template-columns: 1fr; }
  .del-grid { grid-template-columns: 1fr; }
  .snav-item { padding: 16px 16px; font-size: 0.78rem; }
  .service-section { padding: 70px 4%; }
  .qp-modal { grid-template-columns: 1fr; max-height: 95vh; }
  .qp-sidebar { display: none; }
  .qp-form-body { padding: 24px 22px; }
  .qp-form-nav { padding: 16px 22px; }
  .f-row { grid-template-columns: 1fr; }
      .cta-band {
        flex-direction: column;
        text-align: center;
    }
    .cta-band p {
    margin-bottom: 0;
}
	
.hero {
    display: block;
}
	.stat-num {
    font-size: 28px;
}
	.hero-stats {
    gap: 10px;
}
	.hero-buttons a {
    width: 100%;
    text-align: center;
    justify-content: center;
}
	    .hero {
        display: block;
        padding: 190px 3% 20px;
    }
	.nav-logo img {
    height: 65px;
}
	nav {
    padding: 0 2%;
		    height: 80px;
}
	.nav-links{
position:absolute;
top:100%;
left:0;
width:100%;
background:#fff;
flex-direction:column;
align-items:center;
display:none;
padding:20px 0;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.nav-links.active{
display:flex;
}
	
a.nav-cta {
    display: none;
}
	.trade-pill {
    padding: 18px 5px;
}
	div#ann-bar {
    padding: 4px 2%;
}
	.ann-inner {
    font-size: 18px;
    line-height: 25px;
}
	.nav-toggle span {
    width: 36px;
    height: 3px;
    background: #000;
    display: block;
    margin-bottom: 7px;
    border-radius: 10px;
		transition:0.3s ease;
}
	.nav-toggle {
    display: block;
}
	.nav-toggle.active span:nth-child(1){
transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2){
opacity:0;
}

.nav-toggle.active span:nth-child(3){
transform:rotate(-45deg) translate(6px,-6px);
}
	.hero-stats {
    z-index: 999;
    position: relative;
    right: unset;
    bottom: unset;
}
}

.whyus-left p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    line-height: 30px;
}
.page-hero-inner {
    position: relative;
}
.page-template-template-contact .page-hero, .page-template-template-services .page-hero {
    padding: 310px 5% 180px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0A0C0F 0%, #0F1318 40%, #131820 100%);
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-glow {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.what-is {
    background: var(--dark-2);
}
.what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.what-visual img {
    width: 100%;
}
section.what-is h2, section.what-is p, section.what-is ul li {
    color: #A8B0C0;
}
.what-text ul {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.what-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--dark-3);
    border-left: 3px solid var(--amber);
}
.what-text ul li::before {
    content: '→';
    color: var(--amber);
    font-weight: 700;
    flex-shrink: 0;
}
section.what-is p {
    margin-bottom: 15px;
}
.services-breakdown {
    background: var(--dark);
}
.services-breakdown .service-item {
    background: var(--dark-2);
    padding: 40px 32px;
    border: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
}
.services-breakdown .service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.services-breakdown .service-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: rgba(212, 168, 67, 0.12);
    line-height: 1;
    margin-bottom: 20px;
}
.services-breakdown .service-item h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
    color: var(--text);
}
.services-breakdown .service-item p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}
.services-breakdown h2 {
    color: #fff;
}
.services-breakdown .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
}
.services-breakdown .service-item:hover {
    border-color: var(--border);
    background: var(--dark-3);
}
.services-breakdown .service-item:hover::before {
    transform: scaleX(1);
}
.services-breakdown .service-icon img {
    padding: 10px;
}
.innerpageproceess.process {
    background: var(--dark-2);
}
.innerpageproceess.process h2 {
    color: #fff;
}
.innerpageproceess .process-steps {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.innerpageproceess .process-step {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 32px;
    align-items: start;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}
.innerpageproceess .step-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    opacity: 0.6;
}
.innerpageproceess .step-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
	color:#fff;
}
.innerpageproceess .step-content p {
    color: var(--muted);
    font-size: 19px;
    max-width: 560px;
}
.innerpageproceess .step-tag {
    background: var(--dark-4);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    white-space: nowrap;
    align-self: center;
}
.why.innerwhy {
    background: var(--dark);
}
.why.innerwhy h2, .innerwhy .why-card h3{color:#fff}
.innerwhy .why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 60px;
}
.innerwhy .why-card {
    background: var(--dark-2);
    padding: 40px;
    display: flex;
    gap: 24px;
}
.innerwhy .why-card-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.innerwhy .why-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.innerwhy .why-card p {
    color: var(--muted);
    font-size: 18px;
}
.innerwhy .why-card-icon img {
    padding: 10px;
}
section.services-breakdown.customservices .services-grid {
    grid-template-columns: repeat(4, 1fr);
}
section.services-breakdown.customservices .services-grid .service-item {
    text-align: center;
    background: var(--dark-3);
}
section.services-breakdown.customservices .services-grid .service-item .service-icon img {
    margin: 0 auto;
    height: 50px;
}
section.services-breakdown.customservices .services-grid .service-item .service-icon {
    justify-content: center;
    align-items: center;
    display: inline-block;
}
section.services-breakdown.customservices {
    background: var(--dark-2);
}

.software.imn {
    background: var(--dark-2);
}
.software.imn h2{
	color:#fff
}
.imn .software-row {
    display: flex;
    gap: 2px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.imn .software-badge:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.imn .software-badge {
    background: var(--dark-3);
    border: 1px solid var(--border);
    padding: 20px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    transition: border-color 0.2s;
}
section.process.innerpageproceess.ch {
    background: var(--dark);
}
ul#navMenu li {
    position: relative;
}
@media(min-width:768px){
ul#navMenu li ul.sub-menu {
    position: absolute;
    background: #fff;
    width: 250px;
    padding: 15px;
    list-style: none;
    box-shadow: 0 0 10px #0000003b;
	display:none
}
	ul#navMenu li.menu-item-has-children:after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #E8A020;
    border-bottom: 2px solid #E8A020;
    transform: rotate(45deg);
    position: absolute;
    top: 11px;
    right: -13px;
}
}
ul#navMenu li.menu-item-has-children:hover ul.sub-menu {
    display: block;
}
ul#navMenu li ul.sub-menu li a {
    font-size: 15px;
}

@media(max-width:767px){
	.page-template-template-contact .page-hero, .page-template-template-services .page-hero {
    padding: 180px 4% 80px;
}
	.innerwhy .why-cards {
    grid-template-columns: repeat(1, 1fr);
}
	.innerpageproceess .process-step {
    grid-template-columns: repeat(1, 1fr);
}
	.services-breakdown .services-grid{
		grid-template-columns: repeat(1, 1fr);
	}
	.what-grid{
		grid-template-columns: repeat(1, 1fr);
	}
	section.services-breakdown.customservices .services-grid {
    grid-template-columns: repeat(1, 1fr);
}
	    .nav-links.active {
        align-items: baseline;
        padding: 10px;
		        gap: 18px;
    }
	ul.sub-menu {
    list-style: none;
    margin-left: 17px;
}
}