/* ============================================
   The Appliance Guys - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
  --primary: #1a3a5c;
  --primary-light: #2a5a8c;
  --secondary: #e8a931;
  --accent: #c0392b;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #333333;
  --text: #444444;
  --text-light: #666666;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
  --radius: 8px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.3;
}

h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--light-gray);
}

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

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar a {
  color: var(--white);
}

.top-bar a:hover {
  color: var(--secondary);
}

.top-bar-phones {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-phones a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar-hours {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.logo h1 {
  font-size: 1.6rem;
  margin: 0;
}

.logo a {
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
  padding: 5px;
}

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

.nav-menu a {
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-gray);
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: var(--primary);
  color: var(--white);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  background: linear-gradient(rgba(26, 58, 92, 0.85), rgba(26, 58, 92, 0.85)),
              url('../images/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 100px 20px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  color: var(--white);
  font-size: 3.2rem;
  margin-bottom: 0.5rem;
}

.hero h2 {
  color: var(--secondary);
  font-size: 1.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.hero-inner {
  max-width: 800px;
}

/* ============================================
   Page Hero (Inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background: #d4951e;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ============================================
   Service Cards
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

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

.service-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.service-card-body {
  padding: 25px;
}

.service-card-body h3 {
  margin-bottom: 10px;
}

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

.service-card-body a {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--secondary);
}

.service-card-body a:hover {
  color: var(--primary);
}

/* ============================================
   Features / Trust Badges
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

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

/* ============================================
   About / Info Sections
   ============================================ */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-section img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-content h2 {
  margin-bottom: 15px;
}

/* ============================================
   Pricing / Plans
   ============================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  border-top: 4px solid var(--medium-gray);
}

.plan-card.featured {
  border-top-color: var(--secondary);
  transform: scale(1.03);
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.plan-card.featured:hover {
  transform: scale(1.03) translateY(-5px);
}

.plan-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.plan-card .plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.plan-card ul {
  text-align: left;
  margin-bottom: 25px;
}

.plan-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
  padding-left: 25px;
  position: relative;
}

.plan-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--white);
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ============================================
   Contact / Forms
   ============================================ */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h3 {
  margin-bottom: 15px;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-info .icon {
  color: var(--secondary);
  font-size: 1.2rem;
  min-width: 25px;
}

.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ============================================
   Specials / Promo
   ============================================ */
.promo-banner {
  background: linear-gradient(135deg, var(--secondary), #d4951e);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
}

.promo-banner h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.promo-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.promo-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 15px 0;
}

/* ============================================
   Service Detail Lists
   ============================================ */
.service-detail {
  margin-bottom: 40px;
}

.service-detail h3 {
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.checklist {
  list-style: none;
}

.checklist li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--light-gray);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--dark-gray);
  color: rgba(255,255,255,0.8);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
}

.footer a {
  color: rgba(255,255,255,0.7);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 10px;
}

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

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Guarantee Badge
   ============================================ */
.guarantee-banner {
  background: var(--light-gray);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  border: 2px dashed var(--secondary);
  margin: 30px 0;
}

.guarantee-banner h3 {
  color: var(--secondary);
}

/* ============================================
   Service Areas
   ============================================ */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.areas-list span {
  background: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ============================================
   Admin Notification
   ============================================ */
.admin-bar {
  background: #27ae60;
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 0.85rem;
  display: none;
}

.admin-bar.active {
  display: block;
}

.admin-bar a {
  color: white;
  text-decoration: underline;
  margin-left: 10px;
}

/* ============================================
   Editable Content Highlights
   ============================================ */
[data-editable].editing {
  outline: 2px dashed var(--secondary);
  outline-offset: 4px;
  cursor: text;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 992px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .hero h1 { font-size: 2.5rem; }

  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 12px 15px;
    border-bottom: 1px solid var(--light-gray);
    width: 100%;
  }

  .hero {
    padding: 60px 20px;
    min-height: 400px;
  }

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

  .top-bar .container {
    justify-content: center;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .plan-card.featured {
    transform: none;
  }

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

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .section { padding: 40px 0; }
  .btn { padding: 12px 24px; }
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews-section {
  overflow: hidden;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.reviews-header .stars {
  color: var(--secondary);
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.reviews-header .rating-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 6px 16px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 30px;
}

.google-badge img {
  height: 20px;
  width: auto;
  display: inline;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-card .review-stars {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.review-card .review-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.review-card .review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card .review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.review-card .review-name {
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 0.9rem;
}

.review-card .review-date {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============================================
   Image Management (Admin)
   ============================================ */
[data-image-editable] {
  position: relative;
}

[data-image-editable].editing::after {
  content: '📷 Click to change';
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  pointer-events: none;
}

/* ============================================
   Animations — Scroll Reveal System
   ============================================ */

/* Base: hidden before reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Directional variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Scale variant */
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children delays */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.48s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.56s; }

/* Legacy compat */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

/* ============================================
   Enhanced Hover Effects
   ============================================ */

/* Card lift with glow */
.service-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(26, 58, 92, 0.15);
}

.service-card:hover .service-card-img::after {
  height: 70%;
  background: linear-gradient(transparent, rgba(26, 58, 92, 0.4));
}

/* Button press effect */
.btn {
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

/* Feature icon bounce on hover */
.feature-item:hover .feature-icon {
  animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
  60% { transform: translateY(-3px); }
}

/* Nav link underline sweep */
.nav-menu a {
  position: relative;
  overflow: hidden;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
  left: 0;
}

/* Footer link arrow slide */
.footer-links a::before {
  content: '›';
  opacity: 0;
  margin-right: -8px;
  transition: opacity 0.3s, margin-right 0.3s;
}

.footer-links a:hover::before {
  opacity: 1;
  margin-right: 0;
}

/* Plan card glow on hover */
.plan-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-top-color 0.4s ease;
}

.plan-card:hover {
  border-top-color: var(--secondary);
}

/* Guarantee banner pulse */
.guarantee-banner {
  transition: box-shadow 0.5s ease;
}

.guarantee-banner:hover {
  box-shadow: 0 0 0 4px rgba(232, 169, 49, 0.2);
  border-color: var(--secondary);
}

/* Areas list pill hover */
.areas-list span {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: default;
}

.areas-list span:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(26, 58, 92, 0.15);
  background: var(--primary);
  color: white;
}

/* Hero parallax-lite (handled by JS) */
.hero {
  background-attachment: fixed;
  transition: background-position 0.1s linear;
}

@media (max-width: 768px) {
  .hero { background-attachment: scroll; }
}

/* Form field float labels */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 58, 92, 0.1);
}

/* Image hover zoom */
.about-section img,
.service-card-img {
  overflow: hidden;
}

.about-section img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-section img:hover {
  transform: scale(1.03);
}

/* CTA banner shimmer */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: rotate(25deg);
  animation: shimmer 6s infinite;
}

@keyframes shimmer {
  0% { left: -60%; }
  100% { left: 120%; }
}

/* Smooth section transitions */
.section, .section-alt, .cta-banner {
  position: relative;
}

/* Counter animation (for stats) */
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
}

/* Page load fade-in */
@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  animation: pageLoad 0.4s ease;
}

/* Smooth header shadow on scroll */
.header {
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* ============================================
   Skip to content (Accessibility)
   ============================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 8px 15px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumbs {
  padding: 15px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--text-light);
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs span {
  margin: 0 8px;
}

/* ============================================
   Toast / Notification
   ============================================ */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 15px 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success { background: #27ae60; }
.toast.error { background: var(--accent); }
