/* Service Pages Stylesheet */
/* Import parent styles */
@import url('../assets/css/styles.css');

/* Service Hero Section */
.service-hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    160deg,
    rgba(10, 15, 30, 0.8) 0%,
    rgba(0, 60, 130, 0.5) 35%,
    rgba(0, 102, 204, 0.4) 55%,
    rgba(0, 168, 232, 0.5) 80%,
    rgba(10, 15, 30, 0.7) 100%
  );
  z-index: 1;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

.service-logo {
  width: 250px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
  animation: fadeInDown 1s ease-out;
}

.service-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s backwards;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ffffff, #d0e8ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(0, 80, 180, 0.3));
}

.service-hero h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.service-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Service Overview Section */
.service-overview {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f0f7ff 0%, white 40%, white 60%, #f8fbff 100%);
  position: relative;
}

.service-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(0, 102, 204, 0.12) 50%, transparent 90%);
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-color);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
}

.feature-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 1;
  transform: translateY(0);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.1);
  border-color: rgba(0, 102, 204, 0.08);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  display: block;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--dark-color);
  font-weight: 600;
  flex-shrink: 0;
}

.feature-item p {
  color: var(--gray-color);
  line-height: 1.6;
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Benefits Section */
.service-benefits {
  padding: 5rem 0;
  background: linear-gradient(180deg, #e8f0fa 0%, #f0f4f8 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.service-benefits::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 1;
  transform: translateY(0);
  border-left: 4px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-left: 4px solid var(--primary-color);
}

.benefit-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.1);
  border-left-color: var(--accent-color);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.3);
}

.benefit-card h4 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--dark-color);
  font-weight: 600;
  flex-shrink: 0;
}

.benefit-card p {
  color: var(--gray-color);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
  flex-grow: 1;
}

/* Service Gallery Section */
.service-gallery-section {
  padding: 4rem 0;
  background: white;
}

.service-gallery {
  position: relative;
  max-width: 900px;
  margin: 2rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-gallery-slide {
  display: none;
  width: 100%;
  height: 450px;
}

.service-gallery-slide.active {
  display: block;
}

.service-gallery-slide img,
.service-gallery-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 1rem;
  z-index: 10;
}

.gallery-btn {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-btn:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.gallery-counter {
  font-size: 0.85rem;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.45);
  padding: 4px 12px;
  border-radius: 20px;
  align-self: center;
}

/* Packages/Pricing Section */
.service-packages {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f0f4f8 0%, #e8f0fa 50%, #f0f4f8 100%);
  position: relative;
  overflow: hidden;
}

.service-packages::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.package-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: height 0.3s ease;
}

.package-card:hover::before {
  height: 5px;
}

.package-card.featured {
  border-color: rgba(0, 102, 204, 0.15);
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.12);
}

.package-card:hover {
  border-color: rgba(0, 102, 204, 0.1);
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 102, 204, 0.1);
}

.package-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 102, 204, 0.15);
}

.package-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
}

.package-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
  font-weight: 700;
}

.package-price {
  font-size: 1.05rem;
  color: var(--gray-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
  flex-grow: 1;
}

.package-features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-color);
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

.package-card .btn {
  margin-top: auto;
  width: 100%;
}

/* Package Price Display */
.package-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.package-subtitle {
  font-size: 0.9rem;
  color: var(--gray-color);
  margin-bottom: 1rem;
  font-weight: 400;
}

.package-price-display {
  background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
  border-radius: 14px;
  padding: 1.2rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 102, 204, 0.08);
}

.package-card.featured .package-price-display {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(0, 212, 255, 0.06));
  border-color: rgba(0, 102, 204, 0.12);
}

.price-amount {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.price-unit {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-color);
  font-weight: 500;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-estimates {
  background: #fafcff;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(0, 102, 204, 0.05);
}

.estimate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  gap: 0.5rem;
}

.estimate-row:not(:last-child) {
  border-bottom: 1px solid rgba(0, 102, 204, 0.06);
}

.estimate-label {
  font-size: 0.8rem;
  color: var(--gray-color);
  font-weight: 400;
}

.estimate-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  white-space: nowrap;
}

/* Add-Ons Section */
.service-addons {
  padding: 5rem 0;
  background: linear-gradient(180deg, white 0%, #f8fbff 40%, #f0f7ff 100%);
  position: relative;
}

.service-addons::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(0, 102, 204, 0.1) 50%, transparent 90%);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.addon-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(0, 102, 204, 0.06);
  box-shadow: 0 4px 20px rgba(0, 102, 204, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.addon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.1);
  border-color: rgba(0, 102, 204, 0.1);
}

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

.addon-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.addon-card h4 {
  font-size: 1.05rem;
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.addon-card p {
  font-size: 0.88rem;
  color: var(--gray-color);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.addon-price {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.2rem;
  font-weight: 700;
}

.addon-price small {
  font-size: 0.75rem;
  font-weight: 500;
  -webkit-text-fill-color: var(--gray-color);
}

/* Bundle Deals Section */
.service-bundles {
  padding: 5rem 0;
  background: linear-gradient(180deg, #e8f0fa 0%, #f0f4f8 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.service-bundles::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(0, 102, 204, 0.1) 50%, transparent 90%);
}

.service-bundles::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.bundle-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(0, 102, 204, 0.06);
  box-shadow: 0 4px 20px rgba(0, 102, 204, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bundle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.bundle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 102, 204, 0.12);
  border-color: rgba(0, 102, 204, 0.1);
}

.bundle-card.bundle-featured {
  border-color: rgba(0, 102, 204, 0.15);
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.12);
}

.bundle-card.bundle-featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 102, 204, 0.15);
}

.bundle-header {
  margin-bottom: 1rem;
}

.bundle-tag {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--gray-color);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.bundle-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0;
}

.bundle-price {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 102, 204, 0.08);
}

.bundle-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.bundle-features li {
  padding: 0.5rem 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-color);
  line-height: 1.5;
}

.bundle-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.bundle-card .btn {
  width: 100%;
  margin-top: auto;
}

/* 4-column packages grid */
.packages-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

/* 3-column addons grid */
.addons-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Commercial / Bulk Note */
.commercial-note {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.04), rgba(0, 212, 255, 0.03));
  border: 1px solid rgba(0, 102, 204, 0.1);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.commercial-note-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.commercial-note-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.commercial-note-content p {
  font-size: 0.9rem;
  color: var(--gray-color);
  margin: 0;
  line-height: 1.5;
}

.commercial-note-content a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.commercial-note-content a:hover {
  text-decoration: underline;
}

/* Price List (for detailed service lists like pressure cleaning) */
.price-category {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 102, 204, 0.06);
  box-shadow: 0 4px 20px rgba(0, 102, 204, 0.05);
  position: relative;
  overflow: hidden;
}

.price-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.price-category-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 102, 204, 0.08);
}

.price-category-icon {
  font-size: 1.8rem;
}

.price-category-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0;
}

.price-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
}

.price-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  gap: 1rem;
  transition: background 0.2s ease;
}

.price-list-item:hover {
  background: rgba(0, 102, 204, 0.02);
  border-radius: 6px;
}

.price-list-service {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.4;
}

.price-list-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  white-space: nowrap;
}

/* Extra addon single item (for standalone extras) */
.addon-extra-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: white;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-top: 1.2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(0, 102, 204, 0.06);
  box-shadow: 0 2px 12px rgba(0, 102, 204, 0.04);
}

.addon-extra-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.addon-extra-text {
  font-size: 0.92rem;
  color: var(--text-color);
  flex-grow: 1;
}

.addon-extra-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-color);
  white-space: nowrap;
}

/* Booking Section */
.booking-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fbff 0%, #eaf3fe 50%, #f8fbff 100%);
}

.booking-wrapper {
  max-width: 760px;
  margin: 2.5rem auto 0;
}

/* The booking section reuses .contact (dark theme) but sits on a light
   background, so restore dark heading/paragraph colours for readability. */
.booking-section .section-header h2 {
  background: linear-gradient(135deg, var(--dark-color) 0%, #1a3a5c 50%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.booking-section .section-header p {
  color: var(--gray-color);
}

.booking-form {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 50px rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.06);
}

.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.booking-form .form-group {
  margin-bottom: 1.2rem;
  text-align: left;
}

.booking-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.4rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 102, 204, 0.18);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-color);
  background: #fafcff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.booking-form select:disabled {
  background: #eef2f6;
  color: var(--gray-color);
  cursor: not-allowed;
}

.booking-form textarea {
  resize: vertical;
  min-height: 110px;
}

.booking-form .btn-block {
  margin-top: 0.5rem;
}

.booking-message {
  margin-top: 1.2rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 600px) {
  .booking-form {
    padding: 1.6rem;
  }

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

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-hero {
    height: 65vh;
    min-height: 500px;
    background-attachment: scroll;
  }

  .service-logo {
    width: 140px;
  }

  .service-hero h1 {
    font-size: 2.3rem;
  }

  .service-hero h2 {
    font-size: 1.25rem;
  }

  .service-hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .service-hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .service-overview,
  .service-benefits,
  .service-gallery-section,
  .service-packages,
  .service-addons,
  .service-bundles {
    padding: 3rem 0;
  }

  .features-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .packages-grid,
  .bundles-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

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

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

  .package-card.featured,
  .bundle-card.bundle-featured {
    transform: scale(1);
  }

  .service-gallery-slide {
    height: 280px;
  }

  .gallery-btn {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .benefit-card,
  .feature-item {
    padding: 1.5rem;
  }

  .package-card {
    padding: 1.8rem;
  }

  .bundle-card {
    padding: 1.5rem;
  }

  .price-amount {
    font-size: 1.5rem;
  }

  .bundle-price {
    font-size: 1.3rem;
  }

  .price-list-grid {
    grid-template-columns: 1fr;
  }

  .price-category {
    padding: 1.5rem;
  }

  .commercial-note {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .service-hero {
    height: 55vh;
    min-height: 450px;
  }

  .service-logo {
    width: 120px;
  }

  .service-hero h1 {
    font-size: 1.9rem;
  }

  .service-hero h2 {
    font-size: 1.1rem;
  }

  .service-overview,
  .service-benefits,
  .service-gallery-section,
  .service-packages,
  .service-addons,
  .service-bundles {
    padding: 2.5rem 0;
  }

  .benefit-card,
  .feature-item {
    padding: 1.3rem;
  }

  .package-card {
    padding: 1.5rem;
  }

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

  .packages-grid-4 {
    grid-template-columns: 1fr;
  }

  .addon-card {
    padding: 1.5rem 1.2rem;
  }

  .bundle-card {
    padding: 1.3rem;
  }

  .benefit-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .service-gallery-slide {
    height: 240px;
  }

  .price-amount {
    font-size: 1.3rem;
  }

  .estimate-label,
  .estimate-price {
    font-size: 0.75rem;
  }

  .bundle-price {
    font-size: 1.2rem;
  }

  .price-category {
    padding: 1.2rem;
  }

  .price-category-header h3 {
    font-size: 1.1rem;
  }

  .price-list-service,
  .price-list-price {
    font-size: 0.82rem;
  }

  .addon-extra-item {
    flex-direction: column;
    text-align: center;
  }
}


/* --- FX layer: gradient sheen on the service hero heading --- */
.service-hero h1 {
  background: linear-gradient(110deg, #ffffff 0%, #cfe9ff 25%, #ffffff 50%, #9fd8ff 75%, #ffffff 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out 0.2s backwards, fxSheen 9s linear 1.8s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .service-hero h1 { animation: none; }
}


/* ==========================================================================
   THEME V3 appendix — service pages
   (services.css rules out-cascade the @import of styles.css, so the
   refinements for components defined here must live here.)
   ========================================================================== */

.service-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.06;
  animation: fxHeroIn 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both,
             fxSheen 9s linear 1.8s infinite;
}

.service-hero h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0.92;
}

/* Unified card language */
.feature-item,
.benefit-card {
  border-radius: var(--radius-card);
  border-color: rgba(13, 38, 76, 0.07);
  box-shadow: var(--shadow-card);
}

.benefit-card {
  border-left: 4px solid var(--primary-color);
}

.feature-item:hover,
.benefit-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.package-card,
.addon-card,
.bundle-card,
.price-category {
  border-radius: var(--radius-card);
}

.package-card:hover,
.addon-card:hover,
.bundle-card:hover {
  box-shadow: var(--shadow-card-hover);
}

/* Booking panel: elevated surface + refined fields */
.booking-form {
  border-radius: 24px;
  border: 1px solid rgba(13, 38, 76, 0.07);
  box-shadow: 0 4px 10px rgba(13, 38, 76, 0.04), 0 30px 70px rgba(0, 102, 204, 0.10);
  padding: 2.6rem;
}

.booking-form label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #33435c;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  border-radius: 12px;
  border: 1.5px solid rgba(13, 38, 76, 0.12);
  padding: 0.9rem 1.05rem;
  background: #f8fafc;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(0, 168, 232, 0.14);
  background: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .service-hero h1 { animation: none; }
}

@media (max-width: 600px) {
  .booking-form {
    padding: 1.7rem;
  }
}


/* ==========================================================================
   TIDY HAUL — ORANGE THEME
   tidy-haul.html carries class="theme-haul" on <body>. Variables cover
   everything built on var(); the rest of this block overrides components
   that hardcode blue. Other pages are untouched.
   ========================================================================== */

.theme-haul {
  --primary-color: #e65c00;
  --secondary-color: #f97316;
  --accent-color: #ffa94d;
  --shadow-glow: 0 0 40px rgba(234, 88, 12, 0.15);
  --shadow-card-hover: 0 24px 50px rgba(51, 20, 2, 0.16),
                       0 0 0 1px rgba(249, 115, 22, 0.25),
                       0 0 34px rgba(249, 115, 22, 0.16);
}

/* Hero: warm tint over the photo + warm title sheen */
.theme-haul .service-hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(18, 10, 4, 0.8) 0%,
    rgba(92, 40, 8, 0.5) 35%,
    rgba(194, 65, 12, 0.4) 55%,
    rgba(249, 115, 22, 0.45) 80%,
    rgba(18, 10, 4, 0.7) 100%
  );
}

.theme-haul .service-hero h1 {
  background: linear-gradient(110deg, #ffffff 0%, #ffdfc2 25%, #ffffff 50%, #ffbe85 75%, #ffffff 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(160, 60, 0, 0.3));
}

/* Buttons */
.theme-haul .btn-primary,
.theme-haul .contact-form .btn-primary,
.theme-haul .quick-contact .btn-primary,
.theme-haul .nav-link.nav-cta {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.theme-haul .btn-primary:hover,
.theme-haul .contact-form .btn-primary:hover,
.theme-haul .nav-link.nav-cta:hover {
  box-shadow: 0 18px 40px rgba(234, 88, 12, 0.45), 0 0 26px rgba(255, 169, 77, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Eyebrow chips */
.theme-haul .section-label {
  background: rgba(234, 88, 12, 0.07);
  border-color: rgba(234, 88, 12, 0.25);
}

.theme-haul .contact .section-label {
  background: rgba(255, 169, 77, 0.08);
  border-color: rgba(255, 169, 77, 0.35);
}

/* Headings: navy-to-orange gradient text */
.theme-haul .section-header h2,
.theme-haul .booking-section .section-header h2 {
  background: linear-gradient(135deg, var(--dark-color) 0%, #7c3a10 50%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card hover glow (components that hardcode the cyan ring) */
.theme-haul .service-card:hover,
.theme-haul .contact-card:hover {
  box-shadow: var(--shadow-card-hover);
}

/* Form focus rings */
.theme-haul .booking-form input:focus,
.theme-haul .booking-form select:focus,
.theme-haul .booking-form textarea:focus,
.theme-haul .form-group input:focus,
.theme-haul .form-group select:focus,
.theme-haul .form-group textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

/* Footer accents */
.theme-haul .footer h4 {
  color: rgba(255, 180, 102, 0.9);
}

.theme-haul .footer-bottom a {
  color: #ffa94d;
}

.theme-haul .footer-services a:hover {
  color: var(--accent-color);
}

/* Back-to-top sonar ring in orange */
.theme-haul .back-to-top.visible {
  animation: fxPulseRingHaul 2.6s ease-out infinite;
}

@keyframes fxPulseRingHaul {
  0%   { box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35), 0 0 0 0 rgba(249, 115, 22, 0.35); }
  70%  { box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35), 0 0 0 14px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35), 0 0 0 0 rgba(249, 115, 22, 0); }
}

/* fx.js-injected UI: progress bar, cursor glow, call button */
.theme-haul .fx-progress {
  background: linear-gradient(90deg, #c2410c, #f97316, #ffb066);
}

.theme-haul .fx-cursor {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.09) 0%, rgba(249, 115, 22, 0.04) 35%, transparent 65%);
}

.theme-haul .fx-call-fab {
  background: linear-gradient(135deg, #ea580c, #f97316);
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.4);
  animation: fxFabRingHaul 3s ease-out 1.5s infinite;
}

.theme-haul .fx-call-fab:hover {
  box-shadow: 0 16px 38px rgba(234, 88, 12, 0.5), 0 0 22px rgba(255, 169, 77, 0.35);
}

@keyframes fxFabRingHaul {
  0%   { box-shadow: 0 12px 30px rgba(234, 88, 12, 0.4), 0 0 0 0 rgba(249, 115, 22, 0.4); }
  70%  { box-shadow: 0 12px 30px rgba(234, 88, 12, 0.4), 0 0 0 16px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 12px 30px rgba(234, 88, 12, 0.4), 0 0 0 0 rgba(249, 115, 22, 0); }
}

/* Selection color */
.theme-haul ::selection {
  background: rgba(249, 115, 22, 0.85);
  color: #fff;
}

/* Bakkie schedule note in the booking form */
.theme-haul .bakkie-note {
  margin: 0 0 1.2rem;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #7c3a10;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .theme-haul .back-to-top.visible,
  .theme-haul .fx-call-fab {
    animation: none;
  }
}


/* ==========================================================================
   BOOKING FORM — waste photo uploader
   Colors ride on the CSS variables, so this is orange on the Tidy Haul
   page automatically.
   ========================================================================== */

.photo-upload-btn {
  width: 100%;
  padding: 1rem;
  border: 2px dashed rgba(0, 0, 0, 0.18);
  border-color: color-mix(in srgb, var(--primary-color) 35%, transparent);
  border-radius: 12px;
  background: transparent;
  color: var(--primary-color);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.photo-upload-btn span {
  font-weight: 400;
  color: var(--gray-color);
  font-size: 0.85rem;
}

.photo-upload-btn:hover {
  border-color: var(--secondary-color);
  background: rgba(0, 0, 0, 0.02);
  transform: translateY(-1px);
}

.photo-upload-hint {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--gray-color);
  line-height: 1.4;
}

.photo-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.photo-previews:empty {
  margin-top: 0;
}

.photo-preview {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.85rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.photo-remove:hover {
  background: rgba(200, 30, 30, 0.85);
}


/* The 2026 Tidy Experts lockup is dark ink on transparent. On a dark photo
   hero it needs a light backing card to stay legible; the Tidy Haul TH badge
   is a self-contained circle and keeps its transparent background. */
.service-logo--card {
  background: rgba(255, 255, 255, 0.96);
  padding: 1.1rem 1.6rem;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(2, 18, 51, 0.25);
  width: auto;
  max-width: 340px;
  max-height: 170px;
}

@media (max-width: 768px) {
  .service-logo--card {
    max-width: 240px;
    padding: 0.9rem 1.2rem;
  }
}


/* ==========================================================================
   TIDY HAUL — "Our Trucks" showcase (transparent truck cut-outs)
   ========================================================================== */
.haul-fleet {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #fff6ef 55%, #ffffff 100%);
}

/* Two across on desktop so each vehicle gets room; one per row on mobile. */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.fleet-card {
  position: relative;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(13, 38, 76, 0.07);
  border-radius: 20px;
  padding: 1.6rem 1.4rem 1.8rem;
  box-shadow: 0 4px 18px rgba(13, 38, 76, 0.05);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(234, 88, 12, 0.16),
              0 0 0 1px rgba(249, 115, 22, 0.22);
}

/* Capacity pill */
.fleet-badge {
  display: inline-block;
  margin-bottom: 0.4rem;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.3);
}

.fleet-badge--bakkie {
  background: linear-gradient(135deg, #0f2744, #1e4272);
  box-shadow: 0 6px 16px rgba(15, 39, 68, 0.28);
}

.fleet-badge--skip {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  box-shadow: 0 6px 16px rgba(29, 78, 216, 0.28);
}

/* Fixed stage so portrait bakkies and landscape trucks all line up */
.fleet-img {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.6rem;
  background: radial-gradient(ellipse at 50% 88%, rgba(234, 88, 12, 0.13) 0%, rgba(234, 88, 12, 0) 62%);
  border-radius: 18px;
  padding: 0.8rem;
}

.fleet-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(2, 18, 51, 0.22));
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fleet-card:hover .fleet-img img {
  transform: scale(1.04);
}

.fleet-card h4 {
  font-family: var(--font-display, inherit);
  font-size: 1.2rem;
  color: var(--dark-color);
  margin: 1.1rem 0 0.5rem;
}

.fleet-card p {
  color: var(--gray-color);
  font-size: 0.93rem;
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto;
}

@media (max-width: 780px) {
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .fleet-img {
    height: 220px;
  }
}
