/* ============================================================
   VOLT GLOBAL – Main Stylesheet
   Colors: Navy #1e2535 | Red #e8251a | Light #f5f6f8
   Fonts: Barlow Condensed (headings) + Barlow (body)
   ============================================================ */

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

:root {
  --navy:   #1e2535;
  --navy2:  #2b3347;
  --red:    #e8251a;
  --light:  #f5f6f8;
  --white:  #ffffff;
  --muted:  #7a8194;
  --border: rgba(255,255,255,0.08);
  --ff-head: 'Barlow Condensed', sans-serif;
  --ff-body: 'Barlow', sans-serif;
  --radius: 10px;
  --shadow: 0 8px 32px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--white); color: var(--navy); overflow-x: hidden; font-size: 16px; line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: #c51f15; }
ul { list-style: none; }

/* ── UTILITIES ── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.bg-light { background: var(--light); }
.bg-navy { background: var(--navy); }
.text-center { text-align: center; }

.section-label {
  font-family: var(--ff-head); font-weight: 700; font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--red);
  margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
}
.section-label::before { content:''; width:28px; height:2px; background:var(--red); }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }

.section-title {
  font-family: var(--ff-head); font-weight: 800;
  font-size: clamp(30px, 4vw, 46px); color: var(--navy);
  line-height: 1.1; margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--red); }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 580px; }
.text-center .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 5px;
  font-family: var(--ff-body); font-weight: 700; font-size: 15px;
  text-decoration: none; transition: all .22s; cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: #c51f15; border-color: #c51f15; color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,37,26,.28); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* ── TOPBAR ── */
.site-topbar {
  background: var(--navy2); color: rgba(255,255,255,0.65);
  font-size: 13px; padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width:14px; height:14px; fill: var(--red); flex-shrink: 0; }
.topbar-item a { color: inherit; }
.topbar-item a:hover { color: var(--red); }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; gap: 24px; }

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark svg { width: 50px; height: 42px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .lt-name { font-family: var(--ff-head); font-weight: 800; font-size: 22px; color: var(--navy); letter-spacing: 1px; }
.logo-text .lt-sub  { font-family: var(--ff-head); font-weight: 600; font-size: 12px; color: var(--red); letter-spacing: 3px; text-transform: uppercase; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-weight: 600; font-size: 14px; color: var(--navy); letter-spacing: 0.3px; position: relative; padding-bottom: 3px; }
.main-nav a::after { content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--red); transition: width .25s; }
.main-nav a:hover::after, .main-nav a.current-menu-item::after { width: 100%; }
.main-nav a:hover, .main-nav a.current-menu-item { color: var(--red); }
.header-cta { display: flex; align-items: center; gap: 14px; }

/* Mobile toggle */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: all .25s; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--navy);
  z-index: 9999; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-family: var(--ff-head); font-weight: 700; font-size: 32px; color: var(--white); letter-spacing: 1px; }
.mobile-menu a:hover { color: var(--red); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; cursor: pointer; }
.mobile-close svg { width: 28px; height: 28px; stroke: var(--white); }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--red); padding: 13px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marqueeScroll 30s linear infinite; white-space: nowrap; }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-track span { font-family: var(--ff-head); font-weight: 700; font-size: 13px; color: rgba(255,255,255,0.85); letter-spacing: 2px; text-transform: uppercase; }
.marquee-track .dot { color: rgba(255,255,255,0.4); font-size: 10px; }

/* ── HERO ── */
.page-hero {
  background: var(--navy); position: relative; overflow: hidden;
  padding: 100px 0 90px; display: flex; align-items: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 90% at 80% 50%, rgba(232,37,26,0.13) 0%, transparent 65%);
}
.page-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 50px;
  background: var(--white); clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,37,26,0.15); border: 1px solid rgba(232,37,26,0.35);
  padding: 6px 14px; border-radius: 100px;
  color: #ff7265; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px;
}
.hero-badge .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.3} }
.hero-content h1 { font-family: var(--ff-head); font-weight: 800; font-size: clamp(42px,5.5vw,68px); line-height: 1.0; color: var(--white); margin-bottom: 22px; }
.hero-content h1 em { font-style: normal; color: var(--red); }
.hero-content p { color: rgba(255,255,255,0.6); font-size: 17px; line-height: 1.7; margin-bottom: 36px; max-width: 440px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-stat { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 24px 20px; }
.hero-stat.featured { grid-column: 1/-1; background: rgba(232,37,26,0.15); border-color: rgba(232,37,26,0.3); }
.hero-stat .num { font-family: var(--ff-head); font-weight: 800; font-size: 38px; color: var(--white); line-height: 1; }
.hero-stat .num span { color: var(--red); }
.hero-stat .lbl { color: rgba(255,255,255,0.5); font-size: 13px; margin-top: 5px; }

/* Page Banner (inner pages) */
.page-banner {
  background: var(--navy); padding: 70px 0 60px; position: relative; overflow: hidden;
}
.page-banner::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 120% at 90% 50%, rgba(232,37,26,0.12) 0%, transparent 60%);
}
.banner-content { position: relative; z-index: 1; }
.banner-content h1 { font-family: var(--ff-head); font-weight: 800; font-size: clamp(36px, 5vw, 60px); color: var(--white); margin-bottom: 10px; }
.banner-content h1 em { font-style: normal; color: var(--red); }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--red); }

/* ── CARDS / FEATURE ── */
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cards-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.vg-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 26px; border: 1px solid rgba(0,0,0,0.07);
  transition: all .3s; position: relative; overflow: hidden;
}
.vg-card::before { content:''; position:absolute; top:0; left:0; width:4px; height:0; background:var(--red); transition:height .3s; }
.vg-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); border-color: transparent; }
.vg-card:hover::before { height: 100%; }
.card-icon { width: 52px; height: 52px; border-radius: 10px; background: rgba(232,37,26,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card-icon svg { width: 26px; height: 26px; stroke: var(--red); fill: none; stroke-width: 1.8; }
.vg-card h3 { font-family: var(--ff-head); font-weight: 700; font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.vg-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── ABOUT SECTION ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col.reverse .col-visual { order: 2; }
.two-col.reverse .col-content { order: 1; }

.col-visual { position: relative; }
.visual-box { background: var(--navy); border-radius: 14px; height: 420px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.visual-box svg { width: 180px; height: 180px; opacity: 0.12; }
.visual-badge { position: absolute; bottom: -18px; right: -18px; background: var(--red); color: var(--white); border-radius: 12px; padding: 20px 22px; text-align: center; }
.visual-badge .vb-num { font-family: var(--ff-head); font-size: 40px; font-weight: 800; line-height: 1; }
.visual-badge .vb-txt { font-size: 12px; opacity: 0.9; margin-top: 4px; }

.check-list { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.ci-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(232,37,26,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.ci-icon svg { width: 12px; height: 12px; stroke: var(--red); fill: none; stroke-width: 2.5; }
.check-item p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.check-item strong { color: var(--navy); }

/* ── PROCESS / STEPS ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 50px; }
.process-step { padding: 28px 24px; position: relative; }
.process-step:not(:last-child)::after { content:'→'; position:absolute; top:52px; right:-10px; color: var(--red); font-size: 18px; z-index:1; }
.step-num { font-family: var(--ff-head); font-weight: 800; font-size: 46px; color: rgba(232,37,26,0.1); line-height: 1; margin-bottom: 12px; }
.step-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step-icon svg { width: 22px; height: 22px; stroke: var(--white); fill: none; stroke-width: 1.8; }
.process-step h4 { font-family: var(--ff-head); font-weight: 700; font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── CTA BAND ── */
.cta-band { background: var(--navy); padding: 70px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-copy h2 { font-family: var(--ff-head); font-weight: 800; font-size: clamp(28px,3.5vw,42px); color: var(--white); line-height: 1.15; }
.cta-copy h2 em { font-style: normal; color: var(--red); }
.cta-copy p { color: rgba(255,255,255,0.5); margin-top: 8px; max-width: 440px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── TEAM CARDS ── */
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(0,0,0,0.07); transition: all .3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-photo { height: 220px; background: var(--navy); display: flex; align-items: center; justify-content: center; }
.team-photo svg { width: 80px; height: 80px; stroke: rgba(255,255,255,0.2); fill:none; stroke-width:1; }
.team-info { padding: 20px 22px; }
.team-info h4 { font-family: var(--ff-head); font-weight: 700; font-size: 18px; color: var(--navy); }
.team-info span { font-size: 13px; color: var(--red); font-weight: 600; }
.team-info p { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.6; }

/* ── VALUES ── */
.value-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 28px; }
.value-num { font-family: var(--ff-head); font-weight: 800; font-size: 48px; color: rgba(232,37,26,0.15); line-height: 1; flex-shrink: 0; width: 60px; }
.value-item h4 { font-family: var(--ff-head); font-weight: 700; font-size: 18px; color: var(--navy); margin-bottom: 6px; }
.value-item p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── CONTACT SECTION ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; }
.info-item { display: flex; align-items: flex-start; gap: 16px; }
.info-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2; }
.info-item h4 { font-family: var(--ff-head); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 4px; }
.info-item p, .info-item a { font-size: 15px; color: var(--navy); font-weight: 600; line-height: 1.55; }
.info-item a:hover { color: var(--red); }

/* Ninja Form Container */
.nf-wrap {
  background: var(--white); border-radius: 14px;
  padding: 40px 36px; box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.nf-wrap h3 { font-family: var(--ff-head); font-weight: 800; font-size: 26px; color: var(--navy); margin-bottom: 24px; }
.nf-placeholder {
  border: 2px dashed rgba(232,37,26,0.25); border-radius: 8px;
  padding: 32px; text-align: center; color: var(--muted); font-size: 14px;
  background: rgba(232,37,26,0.02);
}
.nf-placeholder code { background: rgba(232,37,26,0.08); color: var(--red); padding: 2px 8px; border-radius: 4px; font-size: 13px; }

/* Ninja Forms global overrides for brand colors */
.nf-form-content .nf-field-container { margin-bottom: 16px !important; }
.nf-form-content input[type="text"],
.nf-form-content input[type="email"],
.nf-form-content input[type="tel"],
.nf-form-content textarea,
.nf-form-content select {
  border: 1.5px solid rgba(0,0,0,0.12) !important;
  border-radius: 6px !important;
  font-family: var(--ff-body) !important;
  font-size: 14px !important;
  padding: 11px 16px !important;
  color: var(--navy) !important;
  transition: border-color .2s !important;
  width: 100% !important;
}
.nf-form-content input:focus,
.nf-form-content textarea:focus { border-color: var(--red) !important; outline: none !important; }
.nf-form-content .submit-container input[type="button"],
.nf-form-content .submit-container input[type="submit"] {
  background: var(--red) !important; color: var(--white) !important;
  border: none !important; border-radius: 5px !important;
  font-family: var(--ff-body) !important; font-weight: 700 !important;
  font-size: 15px !important; padding: 13px 32px !important;
  cursor: pointer !important; transition: background .2s !important;
}
.nf-form-content .submit-container input:hover { background: #c51f15 !important; }
.nf-field-label label { font-weight: 700 !important; font-size: 12px !important; text-transform: uppercase !important; letter-spacing: 1px !important; color: var(--muted) !important; margin-bottom: 5px !important; display: block !important; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.6); }
.footer-main { padding: 60px 0; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; text-decoration: none; }
.footer-brand-logo .lt-name { color: var(--white) !important; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: var(--ff-head); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--white);
  margin-bottom: 18px; position: relative; padding-bottom: 10px;
}
.footer-col h4::after { content:''; position:absolute; left:0; bottom:0; width:24px; height:2px; background:var(--red); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 14px; }
.footer-col ul li a:hover { color: var(--red); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 13px;
}
.footer-bottom a { color: var(--red); }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .hero-cards, .two-col.reverse .col-visual, .two-col.reverse .col-content { order: unset; }
  .hero-cards { display: none; }
  .cards-grid-3, .cards-grid-4 { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
}
@media (max-width: 600px) {
  .cards-grid-3, .cards-grid-4, .cards-grid-2, .process-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .cta-inner { text-align: center; justify-content: center; }
  .nf-wrap { padding: 28px 20px; }
}
