/* ============================================
   FLORIDA ORANGE — Pressure Washing Website
   ============================================ */

/* --- Variables --- */
:root {
  --orange:       #E8671A;
  --orange-hover: #C95510;
  --orange-glow:  rgba(232, 103, 26, 0.35);
  --navy:         #0D2640;
  --navy-mid:     #163650;
  --navy-light:   #1E4A6A;
  --green:        #2B7049;
  --green-dark:   #1A4A30;
  --black:        #080808;
  --gray-900:     #141414;
  --gray-700:     #3A3A3A;
  --gray-500:     #767676;
  --gray-200:     #E4E4E4;
  --gray-100:     #F5F5F3;
  --white:        #FFFFFF;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.11);
  --shadow-lg: 0 20px 56px rgba(0,0,0,0.15);

  --ease: 0.25s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* --- Layout --- */
.container { max-width: 1600px; margin: 0 auto; padding: 0 48px; width: 100%; }

/* --- Section Shared --- */
.section-head { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-sub.light { color: rgba(255,255,255,0.5); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.93rem;
  letter-spacing: 0.4px;
  transition: all var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--orange-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ==========================================
   TOPBAR
   ========================================== */
html { scroll-padding-top: 68px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: -0.2px;
  transition: color var(--ease);
}
.topbar-phone:hover { color: var(--orange); }
.topbar-phone svg {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
  flex-shrink: 0;
}
.topbar-logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  /* Swap in your background image below when ready:
     background-image: url('images/hero.jpg');
     background-size: cover;
     background-position: center; */
  background: linear-gradient(
    140deg,
    var(--navy)       0%,
    var(--navy-mid)   45%,
    var(--green-dark) 100%
  );
  position: relative;
  padding: 80px 0 100px;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 60%, rgba(232,103,26,0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(43,112,73,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
/* Left column */
.hero-badge {
  display: inline-block;
  background: rgba(232,103,26,0.14);
  border: 1px solid rgba(232,103,26,0.38);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 6px;
}
.hero-title span { color: var(--orange); }
.hero-biz {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-sub-loc {
  color: var(--orange);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
/* Right column — credential card */
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.hero-card-logo {
  width: 200px;
  max-width: 80%;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.35));
}
.hero-card-stars {
  color: var(--orange);
  font-size: 1.25rem;
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.hero-card-rating {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-card-divider {
  width: 36px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 24px;
  border-radius: 2px;
}
.hero-card-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hc-stat { text-align: center; }
.hc-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: -0.5px;
}
.hc-lbl {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.hc-rule {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
  padding: 110px 0;
  background: var(--gray-100);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s ease;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.04); }
/* Placeholder shown until real photo is added */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-svc="driveway"] .img-placeholder { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
[data-svc="house"]    .img-placeholder { background: linear-gradient(135deg, #B84A15 0%, var(--orange) 100%); }
[data-svc="fence"]    .img-placeholder { background: linear-gradient(135deg, #3B2510 0%, #6B4A28 100%); }
[data-svc="roof"]     .img-placeholder { background: linear-gradient(135deg, #1E1E2A 0%, #3A3A50 100%); }
[data-svc="pool"]     .img-placeholder { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); }
.img-placeholder span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.service-body { padding: 18px 16px 22px; }
.service-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-body p {
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ==========================================
   BEFORE & AFTER
   ========================================== */
.before-after {
  display: none;
  padding: 110px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.before-after::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 100%, rgba(43,112,73,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}
.ba-item {}
.ba-label-top {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  text-align: center;
}
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 3;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  border: 1px solid rgba(255,255,255,0.08);
}
.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}
.ba-after {
  clip-path: inset(0 50% 0 0);
}
.ba-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-ph::after {
  content: 'Coming Soon';
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
/* Before: dark, dingy */
.ba-ph--before {
  background: linear-gradient(135deg, #1A140E 0%, #2E2318 100%);
}
/* After: clean, service-matched */
.ba-ph--after[data-svc="driveway"] { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.ba-ph--after[data-svc="house"]    { background: linear-gradient(135deg, #B84A15 0%, var(--orange) 100%); }
.ba-ph--after[data-svc="pool"]     { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); }

/* Before/After labels */
.ba-tag {
  position: absolute;
  bottom: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.ba-tag--before {
  left: 14px;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.7);
}
.ba-tag--after {
  right: 14px;
  background: rgba(232,103,26,0.85);
  color: var(--white);
}
/* Draggable handle */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}
.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--white);
  opacity: 0.9;
}
.ba-btn {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  flex-shrink: 0;
}
.ba-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
  flex-shrink: 0;
}

/* ==========================================
   REVIEWS
   ========================================== */
.reviews {
  padding: 110px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  position: relative;
  z-index: 2;
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: 34px;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.review-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,103,26,0.28);
  transform: translateY(-4px);
}
.review-stars {
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.review-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-name {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
}
.review-loc {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  margin-top: 3px;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
  padding: 110px 0 0;
  background: var(--gray-100);
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.contact-card {
  flex: 0 1 260px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 34px 28px 30px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  gap: 10px;
  transition: all var(--ease);
  cursor: default;
}
a.contact-card {
  cursor: pointer;
}
a.contact-card:hover {
  background: var(--white);
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.contact-icon-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(232,103,26,0.1);
  border: 1.5px solid rgba(232,103,26,0.25);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  transition: all var(--ease);
}
.contact-icon-ring svg {
  width: 22px;
  height: 22px;
}
.contact-lbl {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color var(--ease);
}
.contact-val {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--navy);
  line-height: 1.4;
  transition: color var(--ease);
}
.contact-social {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  margin-top: 6px;
}
.contact-social-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: transform var(--ease), box-shadow var(--ease), opacity var(--ease);
}
.contact-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  opacity: 0.9;
}
.contact-social-btn--fb {
  background: #1877F2;
  color: #fff;
}
.contact-social-btn--ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
}
.contact-social-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-copyright {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 24px;
  padding-bottom: 28px;
}

/* Google review CTA */
.reviews-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  padding-bottom: 0;
  border-top: 1px solid var(--gray-200);
}
.reviews-cta p {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-500);
  letter-spacing: 0.3px;
}
.reviews-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.reviews-cta-btn:hover {
  border-color: #4285F4;
  box-shadow: 0 4px 16px rgba(66,133,244,0.18);
  transform: translateY(-2px);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-up {
  opacity: 0;
  translate: 0 14px;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), translate 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible {
  opacity: 1;
  translate: 0 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* --- Tablet (≤900px) --- */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Mobile (≤768px): everything stacks --- */
@media (max-width: 768px) {
  /* Global */
  .container    { padding: 0 20px; }
  .section-head { margin-bottom: 40px; }
  .section-sub  { font-size: 0.95rem; }

  /* Topbar */
  .topbar-phone { font-size: 0.9rem; }
  .topbar-logo img { height: 44px; }

  /* Hero: stack to single column */
  .hero         { padding: 48px 0 64px; min-height: 0; }
  .hero-grid    { grid-template-columns: 1fr; gap: 36px; }
  .hero-title   { letter-spacing: -2px; }
  .hero-biz     { font-size: 0.88rem; }
  .hero-text    { text-align: center; }
  .hero-sub     { font-size: 0.97rem; max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-card    { padding: 28px 24px; }
  .hero-card-logo { width: 160px; }

  /* Services */
  .services        { padding: 64px 0; }
  .services-grid   { grid-template-columns: 1fr; gap: 14px; }
  .service-img     { height: 200px; }
  .service-body    { padding: 20px 18px 24px; }
  .service-body h3 { font-size: 1.05rem; }
  .service-body p  { font-size: 0.9rem; }

  /* Before & After */
  .before-after { padding: 64px 0; }
  .ba-grid      { grid-template-columns: 1fr; gap: 20px; }

  /* Reviews */
  .reviews      { padding: 64px 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card  { padding: 24px 20px; }
  .review-text  { font-size: 0.92rem; }
  .review-loc   { font-size: 0.82rem; }

  /* Contact */
  .contact      { padding: 64px 0; }

}

/* --- Small mobile (≤480px): tighten further --- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Topbar */
  .topbar-phone { font-size: 0.85rem; }

  /* Hero */
  .hero         { padding: 36px 0 52px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn          { width: 100%; max-width: 320px; padding: 13px 24px; }
  .hero-card    { padding: 24px 16px; }
  .hero-card-logo { width: 140px; }

  /* Services */
  .services-grid { gap: 12px; }

  /* Reviews */
  .review-card { padding: 18px 14px; }

  /* Contact */
  .contact-card        { flex: 1 1 100%; padding: 26px 16px 22px; }
  .contact-lbl         { font-size: 0.78rem; }
  .contact-icon-ring   { width: 50px; height: 50px; }

}
