/* ================================
   SHIPP HEATING & AIR - STYLES
   ================================ */

:root {
  /* Fire tones from logo */
  --fire-deep: #c75d1a;
  --fire: #e8762a;
  --fire-bright: #f59e3f;
  --fire-glow: #ffb347;
  --fire-pale: #fff4ed;
  
  /* Ice tones from logo */
  --ice-deep: #4a9cb8;
  --ice: #7ec8e3;
  --ice-light: #a8dce8;
  --ice-pale: #e8f4f8;
  
  /* Light theme neutrals */
  --bg: #ffffff;
  --bg-warm: #fffbf8;
  --bg-section: #f8f9fa;
  --text: #2d3748;
  --text-light: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
}

/* ================================
   RESET & BASE
   ================================ */

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ================================
   SKIP TO CONTENT (accessibility)
   ================================ */

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 1000;
  background: var(--fire-deep);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translate(-50%, 0);
  outline: 3px solid var(--ice);
  outline-offset: 2px;
}

/* ================================
   EMERGENCY BANNER
   ================================ */

.emergency-banner {
  background: linear-gradient(135deg, var(--fire) 0%, var(--fire-deep) 100%);
  color: white;
  text-align: center;
  padding: 0.6rem 0.75rem;
  font-weight: 600;
  font-size: 0.85rem;
}

.emergency-banner strong {
  font-weight: 700;
}

/* ================================
   STICKY MOBILE CTA BAR (mobile only)
   ================================ */

.mobile-sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 0.6rem 0.75rem;
  padding-bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
  gap: 0.5rem;
}

.mobile-sticky-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--fire) 0%, var(--fire-deep) 100%);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(232, 118, 42, 0.3);
}

.mobile-sticky-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--ice-pale);
  color: var(--ice-deep);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  border: 1px solid var(--ice-light);
}

/* ================================
   HEADER
   ================================ */

.header {
  background: var(--bg);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-tagline {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  text-align: center;
}

/* Hide text button on mobile */
.header-buttons {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.header-text {
  background: var(--ice-pale);
  color: var(--ice-deep);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: 1px solid var(--ice-light);
}

.header-text:hover {
  transform: translateY(-2px);
  background: var(--ice-light);
}

.header-text svg {
  width: 18px;
  height: 18px;
}

.header-phone {
  background: linear-gradient(135deg, var(--fire) 0%, var(--fire-deep) 100%);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(232, 118, 42, 0.3);
}

.header-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232, 118, 42, 0.4);
}

.header-phone svg {
  width: 18px;
  height: 18px;
}

/* ================================
   HERO
   ================================ */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(245, 158, 63, 0.20) 0%, rgba(245, 158, 63, 0) 38%),
    radial-gradient(circle at 50% 34%, rgba(126, 200, 227, 0.16) 0%, rgba(126, 200, 227, 0) 42%),
    linear-gradient(135deg, rgba(255, 251, 248, 1) 0%, rgba(232, 244, 248, 0.6) 50%, rgba(255, 244, 237, 0.8) 100%);
}

/* Decorative floating shapes */
.hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(80px);
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--fire-bright);
  top: -150px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--ice);
  bottom: -100px;
  left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 250px;
  height: 250px;
  background: var(--fire-glow);
  top: 30%;
  right: 5%;
  animation: float 6s ease-in-out infinite 1s;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem 0 2rem;
  width: 100%;
}

/* Hero Logo */
.hero-logo {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out;
}

.hero-logo-img {
  height: 160px;
  width: auto;
  transition: transform 0.3s ease;
}

.hero-logo-img:hover {
  transform: scale(1.03) translateY(-2px);
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--ice-deep);
  background: var(--ice-pale);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--ice-light);
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text);
}

.hero h1 .fire {
  color: var(--fire);
  position: relative;
}

.hero h1 .fire::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire-bright), var(--fire));
  border-radius: 2px;
}

.hero h1 .ice {
  color: var(--ice-deep);
  position: relative;
}

.hero h1 .ice::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ice-light), var(--ice-deep));
  border-radius: 2px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 550px;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
  width: 100%;
}

/* ================================
   BUTTONS
   ================================ */

.btn-primary {
  background: linear-gradient(135deg, var(--fire-bright) 0%, var(--fire) 50%, var(--fire-deep) 100%);
  color: var(--white);
  padding: 1.125rem 1.75rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232, 118, 42, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232, 118, 42, 0.5);
}

.btn-secondary {
  background: var(--white);
  border: 2px solid var(--ice);
  color: var(--ice-deep);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: var(--ice-pale);
}

.btn-primary-outline {
  background: transparent;
  border: 2px solid var(--fire);
  color: var(--fire);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}

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

/* ================================
   TRUST BAR
   ================================ */

.trust-bar {
  background: var(--bg-section);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  gap: 0.75rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--fire);
}

.trust-item strong {
  color: var(--text);
  font-weight: 600;
}

/* When last item sits alone in a 2-col row, center it */
.trust-item:last-child:nth-child(even) {
  grid-column: 1 / -1;
}

.trust-item-link {
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.trust-item-link:hover {
  transform: translateY(-2px);
}

.angi-badge {
  background: var(--fire-pale);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--fire-bright);
  flex-direction: row;
  gap: 0.5rem;
  grid-column: 1 / -1;
}

.angi-badge .angi-stars {
  order: 2;
}

.angi-badge strong {
  order: 1;
}

.angi-badge:hover {
  background: #fff0e6;
}

.angi-stars {
  display: flex;
  gap: 2px;
}

.angi-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--fire);
  color: var(--fire);
}

.angi-badge strong {
  font-size: 0.8rem;
  color: var(--fire-deep);
}

/* ================================
   ABOUT SECTION
   ================================ */

.about {
  padding: 4rem 0;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 -14px 50px -8px rgba(232, 118, 42, 0.25),
    0 14px 50px -8px rgba(74, 156, 184, 0.25),
    0 4px 20px rgba(0, 0, 0, 0.06);
}

.about-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}

.about-content {
  padding: 1.5rem;
}

.about-content h2 {
  font-size: 1.45rem;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.about-content h2 span {
  color: var(--fire);
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.about-highlight svg {
  width: 20px;
  height: 20px;
  color: var(--fire);
  flex-shrink: 0;
}

/* ================================
   SERVICES
   ================================ */

.services {
  padding: 4rem 0;
  background: var(--bg-warm);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--ice-deep));
  border-radius: 2px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 1rem;
}

.services-grid {
  display: grid;
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--fire), var(--fire-bright));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.cooling::before {
  background: linear-gradient(180deg, var(--ice-deep), var(--ice));
}

.service-card:hover {
  border-color: var(--fire);
  box-shadow: 0 4px 20px rgba(232, 118, 42, 0.12);
  transform: translateY(-2px);
}

.service-card.cooling:hover {
  border-color: var(--ice);
  box-shadow: 0 4px 20px rgba(126, 200, 227, 0.2);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--fire-pale) 0%, #ffe8d6 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card.cooling .service-icon {
  background: linear-gradient(135deg, var(--ice-pale) 0%, #d0ecf4 100%);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--fire);
}

.service-card.cooling .service-icon svg {
  color: var(--ice-deep);
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ================================
   SERVICE AREA
   ================================ */

.service-area {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, var(--fire) 0%, var(--fire-deep) 100%);
  text-align: center;
}

.service-area h2 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.service-area p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.service-area strong {
  color: var(--white);
}

/* ================================
   REVIEWS
   ================================ */

.reviews {
  padding: 4rem 0;
  background: var(--bg);
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
}

.review-card {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--fire) 0%, var(--fire-deep) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.review-avatar.ice {
  background: linear-gradient(135deg, var(--ice) 0%, var(--ice-deep) 100%);
}

.review-meta h4 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: #f5b400;
}

.review-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.review-text strong {
  color: var(--text);
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.25rem;
}

.reviews-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ================================
   GALLERY
   ================================ */

.gallery {
  padding: 4rem 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(199, 93, 26, 0.4) 40%,
    rgba(74, 156, 184, 0.7) 100%
  );
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   CTA BANNER
   ================================ */

.cta-banner {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, var(--ice-deep) 0%, #3d8fa8 100%);
  text-align: center;
}

.cta-banner h2 {
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

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

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--ice-deep);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta-banner-btn svg {
  color: var(--fire);
}

/* ================================
   CONTACT
   ================================ */

.contact {
  padding: 4rem 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-info {
  text-align: center;
}

.contact-info h2 {
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-phone {
  font-size: 2rem;
  font-weight: 700;
  color: var(--fire);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}

.contact-phone:hover {
  color: var(--fire-deep);
}

.contact-details {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-details a {
  color: var(--fire);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.business-hours {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.business-hours p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
}

.business-hours strong {
  color: var(--text);
}

.emergency-note {
  margin-top: 0.75rem !important;
  color: var(--fire);
  font-weight: 600;
  font-size: 0.9rem !important;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-form h3 {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--bg);
}

.form-group input:not([type="radio"]):focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--fire);
  box-shadow: 0 0 0 3px var(--fire-pale);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.radio-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.radio-fieldset legend {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--text);
  padding: 0;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-option {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.radio-option:hover {
  border-color: var(--fire-bright);
  background: var(--fire-pale);
}

.radio-option:has(input:checked) {
  border-color: var(--fire);
  background: var(--fire-pale);
  box-shadow: 0 0 0 3px var(--fire-pale);
}

.radio-option input[type="radio"] {
  width: auto;
  margin: 0;
  accent-color: var(--fire);
  cursor: pointer;
}

.radio-option span {
  line-height: 1.3;
}

.form-submit {
  background: linear-gradient(135deg, var(--fire) 0%, var(--fire-deep) 100%);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(232, 118, 42, 0.3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232, 118, 42, 0.4);
}

.form-privacy-note {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-privacy-note a {
  color: var(--fire);
  text-decoration: none;
}

.form-privacy-note a:hover {
  text-decoration: underline;
}

/* Form States */
.form-status {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ================================
   FOOTER
   ================================ */

.footer {
  background: var(--text);
  color: var(--white);
  padding: 2.5rem 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.footer-main p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin: 0.25rem 0;
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-contact a:hover {
  opacity: 0.7;
}

.footer-hours {
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: center;
}

.footer-hours strong {
  display: block;
  margin-bottom: 0.35rem;
  opacity: 1;
}

.footer-hours p {
  margin: 0.15rem 0;
}

.copyright {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  opacity: 0.5;
  text-align: center;
  margin: 0;
}

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.footer-legal a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer-legal a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-legal span {
  opacity: 0.4;
}

/* ================================
   404 ERROR PAGE
   ================================ */

.error-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--ice-pale) 50%, var(--fire-pale) 100%);
  padding: 3rem 0 4rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.error-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.error-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.error-404 {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 1rem;
  animation: fadeInUp 0.6s ease-out;
}

.error-404 svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
}

.error-404-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 170px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.error-icicles {
  animation: fadeIn 1s ease-out 0.5s both;
}

.error-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ice-deep);
  background: var(--ice-pale);
  border: 1px solid var(--ice-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.error-content h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--text);
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.error-content h1 .fire {
  color: var(--fire);
}

.error-content h1 .ice {
  color: var(--ice-deep);
}

.error-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto 2rem;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.error-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.error-cta .btn-primary,
.error-cta .btn-secondary {
  width: 100%;
  max-width: 320px;
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  font-size: 0.95rem;
  animation: fadeIn 0.8s ease-out 0.5s both;
}

.error-links span {
  color: var(--text-light);
  font-weight: 500;
}

.error-links a {
  color: var(--ice-deep);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.2s;
}

.error-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--fire);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.error-links a:hover {
  color: var(--fire);
}

.error-links a:hover::after {
  transform: scaleX(1);
}

@media (min-width: 640px) {
  .error-404 {
    max-width: 520px;
  }

  .error-content h1 {
    font-size: 2.75rem;
  }

  .error-cta {
    flex-direction: row;
  }

  .error-cta .btn-primary,
  .error-cta .btn-secondary {
    width: auto;
  }
}

/* ================================
   LEGAL PAGES (Privacy, Terms)
   ================================ */

.legal-page {
  padding: 3rem 0 4rem;
  background: var(--bg);
  min-height: 60vh;
}

.legal-page h1 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.legal-page .legal-updated {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.25rem;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-page p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-page ul {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-page li {
  margin-bottom: 0.35rem;
}

.legal-page a {
  color: var(--fire);
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fire);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: transform 0.2s;
}

.legal-back:hover {
  transform: translateX(-3px);
}

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

/* Mobile-first: body padding for sticky CTA bar */
body {
  padding-bottom: 80px;
}

/* Small tablets and up */
@media (min-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .emergency-banner {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .hero-logo-img {
    height: 185px;
  }
}

@media (min-width: 640px) {
  .trust-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2.5rem;
  }

  .trust-item {
    flex-direction: row;
    text-align: left;
    font-size: 0.95rem;
    gap: 0.5rem;
  }

  .angi-badge {
    flex-direction: column;
    gap: 0.25rem;
  }

  .angi-badge .angi-stars {
    order: 0;
  }

  .angi-badge strong {
    order: 0;
  }

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

  .hero-logo-img {
    height: 210px;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: auto;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  /* Kill sticky bar and body padding on desktop */
  body {
    padding-bottom: 0;
  }

  .mobile-sticky-cta {
    display: none;
  }

  .container {
    padding: 0 2rem;
  }

  .header-inner {
    justify-content: space-between;
  }

  .header-buttons {
    display: flex;
  }

  .hero {
    min-height: 580px;
  }

  .hero-content {
    padding: 2rem 0 3rem;
  }

  .hero-logo-img {
    height: 235px;
  }

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

  .about-grid {
    grid-template-columns: 1fr 2fr;
  }

  .about-image {
    aspect-ratio: auto;
    height: auto;
  }

  .about-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
  }

  .about-content {
    padding: 3rem 2.5rem;
  }

  .about-content h2 {
    font-size: 1.65rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
  }

  .contact-info {
    text-align: left;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-hours {
    text-align: right;
  }

  .gallery-caption {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 620px;
  }

  .hero-logo-img {
    height: 255px;
  }

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

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

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================================
   ANIMATIONS
   ================================ */

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px rgba(231, 76, 60, 0.3); }
  50% { box-shadow: 0 0 15px rgba(231, 76, 60, 0.6); }
}

/* Emergency banner pulse */
.emergency-banner {
  animation: glow 2s ease-in-out infinite;
}

.emergency-banner a:hover {
  transform: scale(1.02);
}

/* Logo hover effect */
.logo {
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  transition: filter 0.3s ease;
}

.logo:hover .logo-img {
  filter: brightness(1.1);
}

/* Hero entrance - runs on page load */
.hero-content {
  animation: fadeInUp 0.6s ease-out;
}

.hero-location {
  animation: fadeIn 0.8s ease-out 0.3s both;
}

.hero h1 {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero > .container > .hero-content > p {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-cta {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Trust bar */
.trust-bar {
  animation: fadeIn 0.6s ease-out 0.4s both;
}

.trust-item {
  transition: transform 0.3s ease, color 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  color: var(--fire);
}

.trust-item svg {
  transition: transform 0.3s ease;
}

.trust-item:hover svg {
  animation: wiggle 0.5s ease;
}

/* Service card enhancements */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card .service-icon {
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  animation: float 1s ease-in-out infinite;
}

/* Button enhancements */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

.btn-secondary {
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--fire);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.btn-secondary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Phone number attention */
.header-phone {
  transition: transform 0.3s ease, color 0.3s ease;
}

.header-phone:hover {
  transform: scale(1.05);
}

.header-phone svg {
  transition: transform 0.3s ease;
}

.header-phone:hover svg {
  animation: wiggle 0.4s ease;
}

.contact-phone {
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.contact-phone:hover {
  transform: scale(1.03);
  text-shadow: 0 0 20px rgba(199, 93, 26, 0.3);
}

/* Review stars shimmer on hover */
.review-card:hover .stars svg {
  animation: float 0.6s ease-in-out;
  animation-delay: calc(var(--i, 0) * 0.1s);
}

.review-card:hover .stars svg:nth-child(1) { --i: 0; }
.review-card:hover .stars svg:nth-child(2) { --i: 1; }
.review-card:hover .stars svg:nth-child(3) { --i: 2; }
.review-card:hover .stars svg:nth-child(4) { --i: 3; }
.review-card:hover .stars svg:nth-child(5) { --i: 4; }

/* Review avatar pulse on hover */
.review-avatar {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover .review-avatar {
  transform: scale(1.1);
  box-shadow: 0 0 0 3px var(--fire-pale);
}

.review-card:hover .review-avatar.ice {
  box-shadow: 0 0 0 3px var(--ice-pale);
}

/* Gallery enhanced hover */
.gallery-item {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* About highlights */
.about-highlight {
  transition: transform 0.3s ease, color 0.3s ease;
}

.about-highlight:hover {
  transform: translateX(5px);
  color: var(--fire);
}

.about-highlight svg {
  transition: transform 0.3s ease;
}

.about-highlight:hover svg {
  transform: scale(1.2);
}

/* Form input focus animations */
.form-group input:not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  transform: translateY(-2px);
}

.form-submit {
  position: relative;
  overflow: hidden;
}

.form-submit::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.form-submit:hover::after {
  width: 400px;
  height: 400px;
}

/* Scroll-triggered animations - visible by default, animate if JS works */
.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.animate-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children - visible by default */
.stagger-children .animate-child {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.animate-ready .animate-child {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.stagger-children.visible .animate-child:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible .animate-child:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible .animate-child:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible .animate-child:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible .animate-child:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible .animate-child:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
