/* ========================================
   J&J Pressure Washing — Styles
   ======================================== */

:root {
  --red: #C41E24;
  --red-dark: #9B1B20;
  --red-light: #E8383E;
  --dark: #1A1A1A;
  --dark-2: #2A2A2A;
  --gray-900: #333333;
  --gray-700: #555555;
  --gray-400: #999999;
  --gray-200: #E0E0E0;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 30, 36, 0.35);
}

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

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

.btn-lg {
  font-size: 1.15rem;
  padding: 16px 36px;
}

/* ---- HEADER ---- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-jj {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.3;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--red-light);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background 0.25s !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  color: var(--white) !important;
}

.mobile-call-btn {
  display: none;
  color: var(--white);
  padding: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-nav.open {
  max-height: 400px;
  padding: 16px 24px 24px;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--dark-2);
}

.mobile-nav-cta {
  background: var(--red);
  color: var(--white) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: var(--radius);
  border-bottom: none !important;
  margin-top: 8px;
}

/* ---- HERO ---- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 30, 36, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(196, 30, 36, 0.08) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 0 80px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 800px;
  margin: 0 auto 20px;
}

.hero-amp {
  color: var(--red);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--gray-400);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- SECTIONS ---- */

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
  color: var(--dark);
  letter-spacing: 0.5px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-700);
  font-size: 1.05rem;
  margin-top: 16px;
  margin-bottom: 48px;
}

/* ---- SERVICES ---- */

.services {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--red);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.65;
}

/* ---- BEFORE & AFTER ---- */

.results {
  padding: 100px 0;
  background: var(--gray-100);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.ba-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-slot {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.ba-before {
  background: #e8e0db;
}

.ba-after {
  background: #d4e6d4;
}

.ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 4px;
  z-index: 2;
}

.ba-before .ba-label {
  background: var(--dark);
  color: var(--white);
}

.ba-after .ba-label {
  background: var(--red);
  color: var(--white);
}

.ba-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 8px;
  color: var(--gray-400);
}

.ba-placeholder span {
  font-size: 0.8rem;
  font-weight: 500;
}

.ba-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-caption {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 20px;
  color: var(--dark);
  text-align: center;
}

/* ---- WHY CHOOSE US ---- */

.why {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}

.why .section-title {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.why-item {
  text-align: center;
}

.why-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
}

.why-item h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 0.92rem;
  color: var(--gray-400);
  line-height: 1.65;
}

/* ---- SERVICE AREAS ---- */

.areas {
  padding: 100px 0;
  background: var(--white);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-tag {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 22px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  color: var(--gray-900);
  transition: all 0.25s;
}

.area-tag:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ---- CTA BANNER ---- */

.cta-banner {
  padding: 80px 0;
  background: var(--red);
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--red);
}

.cta-banner .btn-primary:hover {
  background: var(--gray-100);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.cta-banner .btn-primary svg {
  stroke: var(--red);
}

/* ---- CONTACT ---- */

.contact {
  padding: 100px 0;
  background: var(--gray-100);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--red);
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  color: var(--dark);
}

.contact-item a {
  color: var(--red);
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-item a:hover {
  color: var(--red-dark);
}

.contact-cta-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-cta-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}

.contact-cta-box p {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ---- FOOTER ---- */

.footer {
  background: var(--dark);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.footer-location {
  font-size: 0.82rem;
  color: var(--gray-700);
}

/* ---- RESPONSIVE ---- */

@media (max-width: 968px) {
  .nav {
    display: none;
  }

  .mobile-call-btn,
  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .ba-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-content {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .contact-cta-box {
    padding: 28px;
  }

  .areas-list {
    gap: 8px;
  }

  .area-tag {
    font-size: 0.82rem;
    padding: 8px 16px;
  }
}
