/* =============================================
   PUMP ONE INTERNATIONAL CORP. — MAIN STYLESHEET
   Stack: Bootstrap 5 + Custom CSS
   Brand: Navy #1A3A6B | Orange #E8832A | Light Blue #5BB8E8
============================================= */

:root {
  --navy: #1A3A6B;
  --navy-dark: #122A52;
  --navy-light: #2A4F8A;
  --orange: #E8832A;
  --orange-dark: #C96E1E;
  --orange-light: #F5A04D;
  --blue-light: #5BB8E8;
  --gray-light: #F4F6F9;
  --gray-mid: #E8ECF2;
  --text-main: #1A1A2E;
  --text-muted: #5A6475;
  --white: #FFFFFF;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── UTILITY ── */
.text-orange { color: var(--orange) !important; }
.text-navy { color: var(--navy) !important; }
.bg-light-gray { background: var(--gray-light); }
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }

/* ── BUTTONS ── */
.btn-orange {
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  transition: all 0.2s;
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  border: 2px solid var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  transition: all 0.2s;
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ── TOP BAR ── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  padding: 0.4rem 0;
  font-family: var(--font-body);
}
.topbar span { display: flex; align-items: center; }
.topbar a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: var(--orange); }

/* ── NAVBAR ── */
#mainNav {
  background: var(--navy);
  padding: 0.85rem 0;
  transition: all 0.3s;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
#mainNav.scrolled {
  background: var(--navy-dark);
  padding: 0.5rem 0;
}
.navbar-brand img { transition: all 0.3s; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: white;
  letter-spacing: 0.02em;
}
.brand-text small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--blue-light);
  font-weight: 400;
}
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important;
  padding: 0.5rem 0.8rem !important;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.8rem;
  right: 0.8rem;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: #fff !important; }

/* ── HERO ── */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1E4A8C 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse at 70% 50%, rgba(91,184,232,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(232,131,42,0.06) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute;
  right: -5%;
  top: 10%;
  width: 55%;
  height: 80%;
  background: url('hero-pump.jpg') center/cover no-repeat;
  opacity: 0.12;
  border-radius: 8px;
}
.hero-overlay { display: none; }
.hero-tag {
  display: inline-block;
  background: rgba(232,131,42,0.15);
  border: 1px solid rgba(232,131,42,0.4);
  color: var(--orange-light);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.7;
}
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item {
  padding: 1.2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
}

/* ── SECTION TAGS & TITLES ── */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ── BRAND CARDS ── */
.section-brands { background: var(--gray-light); }
.brand-card {
  background: #fff;
  border: 1.5px solid var(--gray-mid);
  border-radius: 6px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.25s;
  position: relative;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,58,107,0.12);
}
.brand-card.featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, #fff 0%, #FFF8F3 100%);
}
.brand-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  white-space: nowrap;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.brand-origin {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.brand-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── ABOUT SECTION ── */
.about-img-wrap {
  position: relative;
  padding: 1rem;
}
.about-img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 8px;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 4rem;
  gap: 1rem;
}
.about-img-placeholder span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--orange);
  color: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(232,131,42,0.4);
}
.badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.badge-text {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}
.about-pill {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: 20px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
}

/* ── PRODUCT CARDS ── */
.product-card {
  background: #fff;
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: all 0.25s;
}
.product-card:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 28px rgba(26,58,107,0.1);
  transform: translateY(-2px);
}
.product-card.product-card-cta {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.product-card.product-card-cta h4,
.product-card.product-card-cta p { color: rgba(255,255,255,0.85); }
.product-icon {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 1rem;
}
.product-card-cta .product-icon { color: var(--orange-light); }
.product-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.product-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  transition: gap 0.2s;
}
.product-link:hover { gap: 0.7rem; color: var(--orange-dark); }

/* ── SERVICE ITEMS ── */
.service-item {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.25s;
}
.service-item:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(26,58,107,0.08);
  transform: translateY(-2px);
}
.service-item i {
  font-size: 1.8rem;
  color: var(--orange);
  display: block;
  margin-bottom: 0.75rem;
}
.service-item h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.service-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── CTA SECTION ── */
.section-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(91,184,232,0.08) 0%, transparent 70%);
}
.section-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.section-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin: 0;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.88rem;
  align-items: flex-start;
  color: rgba(255,255,255,0.65);
}
.footer-contact i {
  color: var(--orange);
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 0;
  margin-top: 3rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.footer-bottom a {
  color: var(--orange);
  text-decoration: none;
}

/* ── CONTACT PAGE ── */
.contact-form-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(26,58,107,0.08);
}
.form-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-control, .form-select {
  border: 1.5px solid var(--gray-mid);
  border-radius: 4px;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: border-color 0.2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,107,0.08);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 5rem 0 3.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(91,184,232,0.07) 0%, transparent 60%);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.page-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 540px;
}
.breadcrumb-item a { color: var(--orange); text-decoration: none; }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { min-height: 80vh; }
  .hero-title { font-size: 2.5rem; }
  .topbar .d-flex { gap: 0.75rem !important; font-size: 0.75rem; }
  .stat-item { padding: 1rem; }
  .stat-num { font-size: 1.7rem; }
  .about-img-placeholder { height: 260px; font-size: 3rem; }
  .contact-form-wrap { padding: 1.5rem; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .col-lg-7 { animation: fadeUp 0.8s ease forwards; }
