/*--------------------------------------------------------------
# AWTIAHS — Components
# Page sections: hero, testimonials, forms, services,
# about, contact, stats, service-request wizard.
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hero (home)
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.2s ease-in-out !important;
}

/* Ken Burns drift on the active slide */
.hero .carousel-item.active {
  animation: awt-kenburns 9s ease-out forwards;
}

.hero .info {
  background: linear-gradient(165deg, rgba(13, 16, 21, 0.86) 0%, rgba(13, 16, 21, 0.55) 55%, rgba(9, 60, 40, 0.45) 100%);
}

.hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--awt-tint-strong);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 26px;
  animation: awt-fade-up 0.8s var(--awt-ease) both;
}

.hero .hero-eyebrow i {
  color: var(--color-primary);
}

.hero .info h1,
.hero .info h2 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 22px;
  padding-bottom: 0;
}

.hero .info h1::after,
.hero .info h2::after {
  display: none;
}

.hero .info h1 span,
.hero .info h2 span {
  color: #5eead4;
  border: none;
  position: relative;
  white-space: nowrap;
}

.hero .info h1 span::after,
.hero .info h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 10px;
  background: linear-gradient(90deg, rgba(9, 150, 93, 0.55), rgba(94, 234, 212, 0.35));
  border-radius: 4px;
  z-index: -1;
}

.hero .info p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero .hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .info .btn-get-started {
  margin-top: 0;
  font-size: 15px;
}

/* trust chips under the buttons */
.hero .hero-chips {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 46px;
  padding: 0;
  list-style: none;
}

.hero .hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 99px;
  padding: 8px 18px;
}

.hero .hero-chips li i {
  color: var(--color-primary);
  font-size: 15px;
}

/* scroll-down indicator */
.hero .hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 99px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero .hero-scroll::before {
  content: "";
  width: 4px;
  height: 9px;
  border-radius: 99px;
  background: #fff;
  animation: awt-scroll-dot 1.8s ease-in-out infinite;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 56px;
  opacity: 0;
  transition: opacity 0.4s var(--awt-ease);
}

.hero:hover .carousel-control-prev,
.hero:hover .carousel-control-next {
  opacity: 0.85;
}

/*--------------------------------------------------------------
# Inner pages — hero matches index.php
--------------------------------------------------------------*/
.hero.page-hero {
  min-height: 52vh;
  width: 100%;
}

.hero.page-hero .page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  animation: awt-kenburns 12s ease-out forwards;
}

.hero.page-hero .info {
  position: relative;
  z-index: 2;
  min-height: 52vh;
  padding: 120px 0 70px;
}

.hero.page-hero .info h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 18px;
  padding-bottom: 0;
}

.hero.page-hero .info h1::after {
  display: none;
}

.hero.page-hero .info h1 span {
  color: #5eead4;
  border: none;
  position: relative;
  white-space: nowrap;
}

.hero.page-hero .info h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 10px;
  background: linear-gradient(90deg, rgba(9, 150, 93, 0.55), rgba(94, 234, 212, 0.35));
  border-radius: 4px;
  z-index: -1;
}

.hero.page-hero .info p {
  max-width: 620px;
  margin: 0 auto 22px;
}

.hero.page-hero .hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero.page-hero .hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s var(--awt-ease);
}

.hero.page-hero .hero-breadcrumb a:hover {
  color: #fff;
}

.hero.page-hero .hero-breadcrumb .sep {
  opacity: 0.45;
  margin: 0 4px;
}

.hero.page-hero .hero-breadcrumb .current {
  color: var(--awt-tint-strong);
}

.hero.page-hero .hero-scroll {
  display: none;
}

body.inner-page .service-request-container {
  padding-top: 50px;
}

@media (max-width: 768px) {
  .hero.page-hero .info {
    padding: 110px 0 56px;
  }
}

/*--------------------------------------------------------------
# Services marquee strip
--------------------------------------------------------------*/
.awt-marquee {
  background: var(--awt-ink);
  border-block: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  padding: 18px 0;
}

.awt-marquee .awt-marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: awt-marquee 28s linear infinite;
}

.awt-marquee:hover .awt-marquee-track {
  animation-play-state: paused;
}

.awt-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.awt-marquee span i {
  color: var(--color-primary);
  font-size: 11px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-stats-filter {
  margin-bottom: 44px;
  padding: 28px;
  background: var(--awt-surface);
  border: 1px solid var(--awt-line);
  border-radius: var(--awt-radius-lg);
  box-shadow: var(--awt-shadow-sm);
}

.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 18px 34px;
  background: var(--awt-paper);
  border-radius: var(--awt-radius);
  min-width: 170px;
  transition: transform 0.35s var(--awt-ease);
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-value {
  font-family: var(--font-primary);
  font-size: 34px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--awt-muted);
  margin-bottom: 8px;
}

.stat-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.stat-stars i {
  font-size: 15px;
  color: var(--awt-star);
}

.testimonials-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 20px;
  border: 1.5px solid var(--awt-line);
  background: var(--awt-surface);
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  color: var(--awt-body);
  cursor: pointer;
  transition: all 0.3s var(--awt-ease);
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--awt-grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(9, 150, 93, 0.6);
}

.btn-view-all {
  display: inline-block;
  padding: 12px 30px;
  background: var(--awt-grad);
  color: #fff;
  border-radius: 99px;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.3s var(--awt-ease);
}

.btn-view-all:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 10px 22px -8px rgba(9, 150, 93, 0.6);
}

.testimonials-swiper {
  position: relative;
  padding: 10px 54px;
}

.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  color: var(--color-primary);
  background: var(--awt-surface);
  border: 1px solid var(--awt-line);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--awt-shadow-sm);
  transition: all 0.3s var(--awt-ease);
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
  background: var(--awt-grad);
  border-color: transparent;
  color: #fff;
  transform: scale(1.08);
}

.testimonials-swiper .swiper-button-next:after,
.testimonials-swiper .swiper-button-prev:after {
  font-size: 17px;
  font-weight: bold;
}

.testimonials .testimonial-wrap {
  height: 100%;
  padding: 10px 5px;
}

.testimonials .testimonial-item {
  background: var(--awt-surface);
  border: 1px solid var(--awt-line);
  border-radius: var(--awt-radius-lg);
  padding: 30px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--awt-shadow-sm);
  transition: transform 0.4s var(--awt-ease), box-shadow 0.4s var(--awt-ease);
}

.testimonials .testimonial-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--awt-shadow);
}

.testimonial-avatar {
  text-align: center;
  margin-bottom: 14px;
}

.avatar-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin: 0 auto;
  background: var(--awt-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px -6px rgba(9, 150, 93, 0.5);
  border: 3px solid #fff;
  overflow: hidden;
}

.avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-initials {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-primary);
}

.testimonial-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-content .stars {
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonial-content .stars i {
  font-size: 16px;
  color: var(--awt-star);
}

.testimonial-content .stars i.bi-star {
  color: var(--awt-line);
}

.testimonial-message {
  font-size: 15px;
  line-height: 1.75;
  color: var(--awt-body);
  margin: 0 0 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-message .quote-icon-left,
.testimonial-message .quote-icon-right {
  color: var(--awt-tint-strong);
  font-size: 20px;
}

.testimonial-author {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--awt-line);
}

.testimonial-author h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-author h4 {
  font-size: 12.5px;
  color: var(--awt-muted);
  font-weight: 400;
  margin: 0;
}

.testimonials .swiper-pagination {
  margin-top: 26px;
  position: relative;
}

.testimonials .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: var(--awt-line);
  opacity: 1;
  transition: all 0.3s var(--awt-ease);
}

.testimonials .swiper-pagination-bullet-active {
  background: var(--color-primary);
  width: 26px;
  border-radius: 99px;
}

/*--------------------------------------------------------------
# Review form & opening hours cards
--------------------------------------------------------------*/
.review-form-enhanced,
.opening-hours-enhanced {
  background: var(--awt-surface);
  padding: 42px 38px;
  border-radius: var(--awt-radius-lg);
  border: 1px solid var(--awt-line);
  box-shadow: var(--awt-shadow-sm);
  height: 100%;
  transition: transform 0.4s var(--awt-ease), box-shadow 0.4s var(--awt-ease);
}

.review-form-enhanced:hover,
.opening-hours-enhanced:hover {
  transform: translateY(-5px);
  box-shadow: var(--awt-shadow);
}

.form-header,
.opening-hours-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--awt-line);
}

.form-icon,
.opening-hours-icon {
  width: 66px;
  height: 66px;
  background: var(--awt-tint);
  color: var(--color-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.4s var(--awt-ease);
}

.review-form-enhanced:hover .form-icon,
.opening-hours-enhanced:hover .opening-hours-icon {
  transform: rotate(-6deg) scale(1.06);
}

.form-icon i,
.opening-hours-icon i {
  font-size: 28px;
  color: var(--color-primary);
}

.review-form-enhanced h3,
.opening-hours-enhanced h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.review-form-enhanced .form-header p {
  color: var(--awt-body);
  font-size: 15px;
  margin: 0;
}

.form-group-enhanced {
  margin-bottom: 20px;
}

.form-group-enhanced label {
  display: block;
  font-weight: 600;
  color: var(--awt-heading);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group-enhanced label i {
  color: var(--color-primary);
  margin-right: 6px;
}

/* star rating selector */
.rating-selector {
  margin-top: 10px;
}

.star-rating {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 10px;
}

.star-rating .star {
  font-size: 30px;
  color: var(--awt-line);
  cursor: pointer;
  transition: transform 0.2s var(--awt-ease), color 0.2s var(--awt-ease);
  line-height: 1;
  padding: 5px;
  user-select: none;
  -webkit-user-select: none;
}

.star-rating .star i {
  pointer-events: none;
  display: inline-block;
}

.star-rating .star:hover,
.star-rating .star.active {
  color: var(--awt-star);
  transform: scale(1.18);
}

.star-rating .star i.bi-star-fill {
  color: var(--awt-star) !important;
}

.star-rating .star i.bi-star {
  color: var(--awt-line) !important;
}

.rating-text {
  display: block;
  text-align: center;
  color: var(--awt-muted);
  font-size: 14px;
  margin-top: 8px;
  font-style: italic;
}

/* form status messages */
.review-form-enhanced .loading,
.review-form-enhanced .error-message,
.review-form-enhanced .sent-message {
  display: none;
  border-radius: var(--awt-radius-sm);
  padding: 13px 16px;
  margin-bottom: 18px;
  font-size: 14.5px;
  font-weight: 500;
  text-align: center;
}

.review-form-enhanced .error-message {
  background: #fdeaea;
  color: var(--awt-danger);
}

.review-form-enhanced .sent-message {
  background: #e5f6ee;
  color: var(--awt-success);
}

.review-form-enhanced .loading {
  background: var(--awt-paper);
  color: var(--awt-body);
}

/* opening hours rows */
.opening-hours-content {
  flex: 1;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 14px;
  margin: 0 -14px;
  border-radius: var(--awt-radius-sm);
  border-bottom: 1px solid var(--awt-line);
  transition: background 0.3s var(--awt-ease);
}

.hours-item:last-of-type {
  border-bottom: none;
}

.hours-item:hover {
  background: var(--awt-paper);
}

.hours-day {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--awt-heading);
  font-size: 15.5px;
}

.hours-day i {
  color: var(--color-primary);
  font-size: 19px;
}

.hours-time {
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--awt-success);
  background: #e5f6ee;
  padding: 5px 14px;
  border-radius: 99px;
}

.hours-closed .hours-time {
  color: var(--awt-danger);
  background: #fdeaea;
}

.opening-hours-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--awt-line);
  text-align: center;
}

.opening-hours-footer p {
  margin: 0;
  color: var(--awt-muted);
  font-size: 13.5px;
}

.opening-hours-footer i {
  color: var(--color-primary);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services-grid {
  margin-top: 10px;
}

.service-category-card {
  background: var(--awt-surface);
  border-radius: var(--awt-radius-lg);
  padding: 36px;
  border: 1px solid var(--awt-line);
  box-shadow: var(--awt-shadow-sm);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--awt-ease), box-shadow 0.4s var(--awt-ease),
    border-color 0.4s var(--awt-ease);
}

.service-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--awt-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--awt-ease);
}

.service-category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--awt-shadow);
  border-color: var(--awt-tint-strong);
}

.service-category-card:hover::before {
  transform: scaleX(1);
}

.service-category-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--awt-line);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--awt-grad);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px -8px rgba(9, 150, 93, 0.55);
  flex-shrink: 0;
  transition: transform 0.4s var(--awt-ease);
}

.service-category-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.05);
}

.service-icon i {
  font-size: 28px;
  color: #fff;
}

.service-category-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: var(--awt-paper);
  border-radius: var(--awt-radius-sm);
  transition: background 0.3s var(--awt-ease), transform 0.3s var(--awt-ease);
}

.service-item:hover {
  background: var(--awt-tint);
  transform: translateX(6px);
}

.service-item i {
  color: var(--color-primary);
  font-size: 17px;
  flex-shrink: 0;
}

.service-item span {
  color: var(--awt-heading);
  font-size: 15px;
  font-weight: 500;
}

.service-feature-card {
  background: var(--awt-surface);
  border-radius: var(--awt-radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--awt-line);
  box-shadow: var(--awt-shadow-sm);
  height: 100%;
  transition: transform 0.4s var(--awt-ease), box-shadow 0.4s var(--awt-ease),
    border-color 0.4s var(--awt-ease);
}

.service-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--awt-shadow);
  border-color: var(--awt-tint-strong);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: var(--awt-tint);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s var(--awt-ease);
}

.service-feature-card:hover .feature-icon {
  background: var(--awt-grad);
  transform: rotate(-8deg) scale(1.08);
}

.feature-icon i {
  font-size: 30px;
  color: var(--color-primary);
  transition: color 0.4s var(--awt-ease);
}

.service-feature-card:hover .feature-icon i {
  color: #fff;
}

.service-feature-card h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-feature-card p {
  color: var(--awt-body);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

.btn-service-request {
  font-size: 16px;
  padding: 17px 44px;
}

/*--------------------------------------------------------------
# Projects / portfolio (shared index + projects page)
--------------------------------------------------------------*/
.projects .portfolio-flters {
  padding: 0;
  margin: 0 auto 30px;
  list-style: none;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.projects .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 9px 22px !important;
  margin: 0 !important;
  font-size: 14px;
  font-weight: 500;
  color: var(--awt-body);
  background: var(--awt-surface);
  border: 1.5px solid var(--awt-line);
  border-radius: 99px;
  transition: all 0.3s var(--awt-ease);
}

.projects .portfolio-flters li:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.projects .portfolio-flters li.filter-active {
  color: #fff;
  background: var(--awt-grad);
  border-color: transparent;
  box-shadow: 0 8px 18px -8px rgba(9, 150, 93, 0.6);
}

/*--------------------------------------------------------------
# About page
--------------------------------------------------------------*/
.about-hero {
  background: var(--awt-surface);
  padding: 60px 0 20px;
}

.about-story-card {
  background: var(--awt-surface);
  border-radius: var(--awt-radius-lg);
  padding: 50px;
  border: 1px solid var(--awt-line);
  box-shadow: var(--awt-shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--awt-ease), box-shadow 0.4s var(--awt-ease);
}

.about-story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--awt-grad);
}

.about-story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--awt-shadow);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--awt-line);
}

.story-icon {
  width: 76px;
  height: 76px;
  background: var(--awt-grad);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px -8px rgba(9, 150, 93, 0.55);
  flex-shrink: 0;
}

.story-icon i {
  font-size: 34px;
  color: #fff;
}

.story-header h2 {
  font-size: 30px;
  font-weight: 800;
  margin: 0;
}

.story-header h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 6px 0 0;
}

.story-content p {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--awt-body);
  margin: 0;
}

.story-content p + p {
  margin-top: 18px;
}

.story-highlight {
  background: var(--awt-tint);
  padding: 26px 28px;
  border-radius: var(--awt-radius);
  margin: 26px 0;
  border-left: 4px solid var(--color-primary);
}

.story-highlight p {
  margin: 0;
  font-style: italic;
  color: var(--awt-heading);
  font-size: 17px;
}

.about-features {
  margin-top: 60px;
}

.about-features .features-title h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-features .features-title p {
  font-size: 16px;
  color: var(--awt-body);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.feature-item {
  background: var(--awt-surface);
  padding: 32px 26px;
  border-radius: var(--awt-radius-lg);
  text-align: center;
  border: 1px solid var(--awt-line);
  box-shadow: var(--awt-shadow-sm);
  transition: transform 0.4s var(--awt-ease), box-shadow 0.4s var(--awt-ease),
    border-color 0.4s var(--awt-ease);
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--awt-shadow);
  border-color: var(--awt-tint-strong);
}

.feature-item-icon {
  width: 68px;
  height: 68px;
  background: var(--awt-tint);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s var(--awt-ease);
}

.feature-item:hover .feature-item-icon {
  background: var(--awt-grad);
  transform: rotate(-8deg) scale(1.08);
}

.feature-item-icon i {
  font-size: 30px;
  color: var(--color-primary);
  transition: color 0.4s var(--awt-ease);
}

.feature-item:hover .feature-item-icon i {
  color: #fff;
}

.feature-item h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--awt-body);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

/*--------------------------------------------------------------
# Stats counter
--------------------------------------------------------------*/
.stats-counter {
  background: var(--awt-paper);
  padding: 80px 0;
}

.stats-item {
  background: var(--awt-surface);
  padding: 36px 28px;
  border-radius: var(--awt-radius-lg);
  border: 1px solid var(--awt-line);
  box-shadow: var(--awt-shadow-sm);
  height: 100%;
  transition: transform 0.4s var(--awt-ease), box-shadow 0.4s var(--awt-ease);
}

.stats-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--awt-shadow);
}

.stats-item i {
  font-size: 42px;
  margin-right: 20px;
  color: var(--color-primary) !important;
  background: var(--awt-tint);
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stats-item .purecounter {
  font-family: var(--font-primary);
  font-size: 38px;
  font-weight: 800;
  color: var(--awt-heading);
  display: block;
  margin-bottom: 4px;
  line-height: 1.2;
}

.stats-item p {
  font-size: 15px;
  color: var(--awt-muted);
  margin: 0;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Contact page
--------------------------------------------------------------*/
.contact-hero {
  background: var(--awt-surface);
  padding: 60px 0 10px;
}

.contact .info-item {
  background: var(--awt-surface);
  padding: 40px 30px;
  border-radius: var(--awt-radius-lg);
  border: 1px solid var(--awt-line);
  box-shadow: var(--awt-shadow-sm);
  height: 100%;
  text-align: center;
  transition: transform 0.4s var(--awt-ease), box-shadow 0.4s var(--awt-ease),
    border-color 0.4s var(--awt-ease);
}

.contact .info-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--awt-shadow);
  border-color: var(--awt-tint-strong);
}

.contact .info-item i {
  font-size: 28px;
  color: var(--color-primary);
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: var(--awt-tint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s var(--awt-ease);
}

.contact .info-item:hover i {
  background: var(--awt-grad);
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact .info-item p {
  font-size: 15.5px;
  color: var(--awt-body);
  margin: 0;
  line-height: 1.7;
}

.contact-form-container {
  background: var(--awt-surface);
  padding: 48px;
  border-radius: var(--awt-radius-lg);
  border: 1px solid var(--awt-line);
  box-shadow: var(--awt-shadow);
}

.contact-form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--awt-line);
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-form-container h3 i {
  width: 48px;
  height: 48px;
  background: var(--awt-tint);
  color: var(--color-primary);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  flex-shrink: 0;
}

.contact-form-container .form-control {
  margin-bottom: 20px;
}

.contact-form-container textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/*--------------------------------------------------------------
# Service-request wizard
--------------------------------------------------------------*/
.service-request-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px 80px;
}

.opening-hours-info {
  background: var(--awt-surface);
  padding: 26px 30px;
  border-radius: var(--awt-radius);
  border: 1px solid var(--awt-line);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--awt-shadow-sm);
  margin-bottom: 26px;
}

.opening-hours-info strong {
  color: var(--color-primary);
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

.opening-hours-info p {
  margin: 4px 0;
  color: var(--awt-body);
  font-size: 15px;
}

.service-request-header {
  text-align: center;
  margin-bottom: 36px;
  padding: 44px 36px;
  background: var(--awt-ink);
  border-radius: var(--awt-radius-lg);
  position: relative;
  overflow: hidden;
}

.service-request-header::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 150, 93, 0.35), transparent 70%);
}

.service-request-header h1 {
  font-size: clamp(26px, 3.6vw, 34px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.service-request-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.progress-container {
  background: var(--awt-surface);
  padding: 24px 30px;
  border-radius: var(--awt-radius);
  border: 1px solid var(--awt-line);
  box-shadow: var(--awt-shadow-sm);
  margin-bottom: 26px;
}

.progress {
  height: 10px;
  background-color: var(--awt-paper);
  border-radius: 99px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--awt-grad);
  border-radius: 99px;
  transition: width 0.6s var(--awt-ease);
}

.step-form {
  background: var(--awt-surface);
  padding: 48px;
  border-radius: var(--awt-radius-lg);
  border: 1px solid var(--awt-line);
  box-shadow: var(--awt-shadow);
}

.step-pane {
  display: none;
  animation: awt-fade-up 0.45s var(--awt-ease);
}

.step-pane.active {
  display: block;
}

.step-pane h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--awt-line);
  display: flex;
  align-items: center;
  gap: 14px;
}

.step-pane h3::before {
  content: "";
  width: 42px;
  height: 42px;
  background: var(--awt-grad);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 8px 18px -8px rgba(9, 150, 93, 0.6);
}

.step-pane#step1 h3::before { content: "1"; }
.step-pane#step2 h3::before { content: "2"; }
.step-pane#step3 h3::before { content: "2"; }
.step-pane#step4 h3::before { content: "3"; }
.step-pane#step5 h3::before { content: "4"; }

.step-form .form-group {
  margin-bottom: 30px;
}

.step-form .form-group label {
  font-weight: 600;
  color: var(--awt-heading);
  margin-bottom: 10px;
  display: block;
  font-size: 15px;
}

.step-form .form-group label i {
  color: var(--color-primary);
  margin-right: 4px;
}

.radio-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.step-form .form-check {
  margin: 0;
  position: relative;
  padding: 0;
}

.step-form .form-check-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.step-form .form-check-label {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 17px 20px;
  background: var(--awt-paper);
  border: 1.5px solid var(--awt-line);
  border-radius: var(--awt-radius);
  cursor: pointer;
  transition: all 0.3s var(--awt-ease);
  font-weight: 500;
  color: var(--awt-body);
  font-size: 15px;
  position: relative;
}

.step-form .form-check-label::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid var(--awt-muted);
  border-radius: 50%;
  margin-right: 12px;
  transition: all 0.3s var(--awt-ease);
  flex-shrink: 0;
  background: #fff;
}

.step-form .form-check-input:checked ~ .form-check-label {
  background: var(--awt-tint);
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  box-shadow: 0 8px 20px -10px rgba(9, 150, 93, 0.45);
}

.step-form .form-check-input:checked ~ .form-check-label::before {
  background: var(--awt-grad);
  border-color: var(--color-primary);
}

.step-form .form-check-input:checked ~ .form-check-label::after {
  content: "✓";
  position: absolute;
  left: 25px;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
}

.step-form .form-check-label:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .step-form {
    padding: 30px 20px;
  }

  .service-request-header {
    padding: 32px 22px;
  }

  .radio-row {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Spinner (testimonials ajax)
--------------------------------------------------------------*/
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid var(--color-primary);
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
  to { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Responsive tweaks
--------------------------------------------------------------*/
@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }

  .review-form-enhanced,
  .opening-hours-enhanced,
  .about-story-card,
  .contact-form-container {
    padding: 30px 22px;
  }

  .story-header {
    flex-direction: column;
    text-align: center;
  }

  .testimonials-swiper {
    padding: 10px 0;
  }

  .testimonials-swiper .swiper-button-next,
  .testimonials-swiper .swiper-button-prev {
    display: none;
  }

  .stat-item {
    min-width: 130px;
    padding: 14px 20px;
  }

  .stat-value {
    font-size: 26px;
  }

  .hero .hero-chips {
    gap: 8px;
  }
}

@media (max-width: 576px) {
  .testimonials-stats {
    gap: 12px;
  }

  .stat-item {
    flex: 1 1 40%;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}
