/* BioFresh Pure Cleaning — Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700;900&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  --royal: #1a3a8f;
  --royal-dark: #0f2460;
  --royal-light: #2650c7;
  --lime: #7ec828;
  --lime-bright: #96e82e;
  --lime-dark: #5da010;
  --white: #ffffff;
  --off-white: #f4f7f0;
  --gray: #e8ecf0;
  --text-dark: #0d1f3c;
  --text-mid: #4a5568;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ——— NAV ——— */
nav {
  background: var(--royal-dark);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  min-height: 70px;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-logo span { color: var(--lime); }

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transition: all 0.2s;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--lime);
  background: rgba(126,200,40,0.12);
}

.nav-phone {
  color: var(--lime);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* ——— HERO STRIP ——— */
.hero-strip {
  background: linear-gradient(135deg, var(--royal-dark) 0%, var(--royal) 60%, var(--royal-light) 100%);
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(126,200,40,0.04) 40px,
    rgba(126,200,40,0.04) 80px
  );
}

.hero-strip h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  letter-spacing: 3px;
  line-height: 1;
  position: relative;
}

.hero-strip h1 span { color: var(--lime); }

.hero-strip p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* ——— SECTION ——— */
.section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--royal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border-left: 5px solid var(--lime);
  padding-left: 1rem;
}

/* ——— BUTTONS ——— */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
}

.btn-lime {
  background: var(--lime);
  color: var(--royal-dark);
}

.btn-lime:hover {
  background: var(--lime-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126,200,40,0.4);
}

.btn-royal {
  background: var(--royal);
  color: var(--white);
}

.btn-royal:hover {
  background: var(--royal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,58,143,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--lime);
  border: 2px solid var(--lime);
}

.btn-outline:hover {
  background: var(--lime);
  color: var(--royal-dark);
}

/* ——— CARDS ——— */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 10px;
  padding: 1.75rem;
  transition: all 0.3s;
  border-top: 4px solid var(--lime);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26,58,143,0.12);
}

.card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--royal);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ——— FOOTER ——— */
footer {
  background: var(--royal-dark);
  color: rgba(255,255,255,0.75);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--lime); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  max-width: 1100px;
  margin: 0 auto;
}

/* ——— UTILITIES ——— */
.lime { color: var(--lime); }
.royal { color: var(--royal); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.badge {
  display: inline-block;
  background: var(--lime);
  color: var(--royal-dark);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.highlight-bar {
  background: linear-gradient(90deg, var(--lime) 0%, var(--lime-dark) 100%);
  color: var(--royal-dark);
  text-align: center;
  padding: 0.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* ——— RESPONSIVE ——— */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-strip { padding: 2.5rem 1rem 2rem; }
  .section { padding: 2.5rem 1rem; }
}
