/* ==========================================
   Kingdom Bros Pressure Washing
   Clean rebuild - Brand Colors: Navy #0B3550, Gold #f4b400
   ========================================== */

:root {
  --navy: #0B3550;
  --navy-dark: #072438;
  --navy-light: #144466;
  --gold: #f4b400;
  --gold-dark: #d4a000;
  --gold-light: #ffc520;

  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #212529;

  --success: #28a745;
  --error: #dc3545;

  --font-brand: 'Black Ops One', cursive;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Source Sans Pro', sans-serif;

  --container-width: 1200px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 4px 20px rgba(244, 180, 0, 0.3);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: min(var(--container-width), 100% - 48px);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header.light {
  color: var(--white);
}

.section-header.light .section-tag {
  background: rgba(244, 180, 0, 0.2);
  color: var(--gold);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  background: rgba(11, 53, 80, 0.08);
  color: var(--navy);
  border-radius: 20px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header.light h2 {
  color: var(--white);
}

.section-header p {
  color: var(--gray);
  font-size: 18px;
}

.section-header.light p {
  color: rgba(255, 255, 255, 0.8);
}

.highlight {
  color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a:hover {
  color: var(--gold);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar .divider {
  opacity: 0.4;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 44px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gold-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 10px 20px;
  border-radius: var(--radius-md);
}

.nav-cta:hover {
  background: var(--gold-dark);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 10px 20px 20px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 12px 0;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--light-gray);
}

.mobile-cta {
  color: var(--gold-dark) !important;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 100px 0 70px;
  overflow: hidden;
}

.hero-bg-logo {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
  width: clamp(420px, 42vw, 860px);
  max-width: none;
  opacity: 0.14;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(244, 180, 0, 0.15);
  color: var(--gold-light);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.trust-item i {
  color: var(--gold);
}

.scroll-indicator {
  display: none;
}

/* Scripture Banner */
.scripture-banner {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 30px 0;
  text-align: center;
}

.scripture-banner blockquote {
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}

.scripture-banner cite {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
}

/* Showcase / Before-After Slider */
.showcase {
  padding: 80px 0;
  background: var(--off-white);
}

.showcase-slider {
  max-width: 720px;
  margin: 0 auto;
}

.ba-container,
.ba-slider-card {
  position: relative;
}

.ba-slider,
.ba-slider-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  cursor: ew-resize;
  user-select: none;
}

.ba-slider img,
.ba-slider-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.handle-line {
  flex: 1;
  width: 3px;
  background: var(--white);
}

.handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  pointer-events: auto;
  cursor: ew-resize;
}

.ba-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
}

.label-before {
  color: var(--gray);
}

.label-after {
  color: var(--gold-dark);
}

.showcase-cta {
  text-align: center;
  margin-top: 40px;
}

/* Services */
.services {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(11, 53, 80, 0.08);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card ul li {
  color: var(--gray);
  padding: 4px 0;
  font-size: 14px;
}

/* About */
.about {
  padding: 80px 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--navy);
  margin: 10px 0 20px;
  line-height: 1.2;
}

.about-content > p {
  color: var(--gray);
  margin-bottom: 30px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature {
  display: flex;
  gap: 14px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: 4px;
}

.feature-text p {
  color: var(--gray);
  font-size: 14px;
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-frame {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: 10px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.experience-badge .big {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
}

.experience-badge .small {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
}

/* Stats bar */
.stats-bar {
  background: var(--navy);
  color: var(--white);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat i {
  font-size: 28px;
  color: var(--gold);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

/* Service area */
.service-area {
  background: var(--navy-dark);
  color: var(--white);
  padding: 80px 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
}

.area-item i {
  color: var(--gold);
}

.area-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

.area-note a {
  color: var(--gold);
  font-weight: 600;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  padding: 60px 0;
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 12px;
}

.cta-content p {
  max-width: 600px;
  margin: 0 auto 24px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Contact */
.contact {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  color: var(--navy);
  margin: 10px 0 16px;
}

.contact-info > p {
  color: var(--gray);
  margin-bottom: 30px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
}

.method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 53, 80, 0.08);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-label {
  display: block;
  font-size: 13px;
  color: var(--gray);
}

.method-info a {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
}

.contact-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
}

.trust-badge i {
  color: var(--success);
}

.contact-form-wrapper {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.form-message {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 14px;
}

.form-message.success {
  background: rgba(40, 167, 69, 0.12);
  color: var(--success);
}

.form-message.error {
  background: rgba(220, 53, 69, 0.12);
  color: var(--error);
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 40px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--white);
}

.footer-brand p {
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-badges {
  display: flex;
  gap: 16px;
  font-size: 13px;
}

.footer-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-column h4 {
  color: var(--white);
  font-family: var(--font-heading);
  margin-bottom: 16px;
}

.footer-column a,
.footer-column span {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
}

.footer-bottom p {
  margin-bottom: 4px;
}

/* Page header (gallery) */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 40px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--gold);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
}

/* Gallery */
.gallery {
  padding: 60px 0 80px;
}

.gallery-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--navy);
}

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.gallery-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-card:hover {
  box-shadow: var(--shadow-md);
}

.card-header {
  padding: 16px 20px 0;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 14px;
  background: rgba(11, 53, 80, 0.08);
  color: var(--navy);
}

.gallery-card .ba-slider-card {
  margin: 16px 20px 0;
  border-radius: var(--radius-md);
}

.card-info {
  padding: 16px 20px 20px;
}

.card-info h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: 6px;
}

.card-info p {
  font-size: 14px;
  color: var(--gray);
}

.gallery-trust {
  background: var(--off-white);
  padding: 50px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}

.trust-stat i {
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 10px;
  display: block;
}

.trust-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

.trust-label {
  font-size: 13px;
  color: var(--gray);
}

.gallery-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

.gallery-cta h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 12px;
}

.gallery-cta p {
  max-width: 560px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    padding-top: 60px;
  }

  .hero-grid {
    text-align: center;
  }

  .hero-content {
    max-width: none;
  }

  .hero-bg-logo {
    width: clamp(320px, 70vw, 520px);
    opacity: 0.1;
    right: 50%;
    top: auto;
    bottom: -8%;
    transform: translateX(50%);
  }

  .hero-badges,
  .hero-trust,
  .hero-ctas {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .about-grid,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}
