/* ==========================
   ABOUT PAGE HERO SECTION
========================== */

#aboutpage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;

  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.75)),
    url("images/bacgservice.avif");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  padding: 120px 8%;
  overflow: hidden;
}

#aboutpage::before {
  content: "";
  position: absolute;
  inset: 1;
  z-index: 1;
}

.aboutpage-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;

  color: #fff;

  animation: aboutpageFadeUp 1s ease;
}

/* Badge */

.aboutpage-badge {
  display: inline-block;

  padding: 10px 20px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;

  margin-bottom: 25px;
}

/* Title */

.aboutpage-title {
  font-size: 58px;
  line-height: 1.4;
  font-weight: 800;

  margin-bottom: 25px;

  color: #fff;
}

/* Description */

.aboutpage-description {
  max-width: 700px;

  font-size: 18px;
  line-height: 1.9;

  color: rgba(255, 255, 255, 0.88);

  margin-bottom: 35px;
}

/* ==========================
   BREADCRUMB
========================== */

.aboutpage-breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.aboutpage-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.aboutpage-breadcrumb a:hover {
  color: red;
}

.aboutpage-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
}

.aboutpage-current {
  color: red;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}

.aboutpage-current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: yellow;
  border-radius: 10px;
}

/* ==========================
   ANIMATION
========================== */

@keyframes aboutpageFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================
   LAPTOP
========================== */

@media (max-width: 1200px) {
  .aboutpage-title {
    font-size: 58px;
  }
}

/* ==========================
   TABLET
========================== */

@media (max-width: 768px) {
  #aboutpage {
    justify-content: center;
    text-align: center;

    padding: 120px 6%;
  }

  .aboutpage-hero-content {
    margin: auto;
  }

  .aboutpage-title {
    font-size: 42px;
  }

  .aboutpage-description {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .aboutpage-breadcrumb {
    justify-content: center;
    flex-wrap: wrap;
  }

  .aboutpage-breadcrumb a,
  .aboutpage-current,
  .aboutpage-separator {
    font-size: 14px;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 480px) {
  #aboutpage {
    padding: 100px 20px;
  }

  .aboutpage-badge {
    font-size: 12px;
    padding: 8px 16px;
  }

  .aboutpage-title {
    font-size: 32px;
  }

  .aboutpage-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .aboutpage-breadcrumb {
    gap: 10px;
    padding: 8px;
  }

  .aboutpage-home-link,
  .aboutpage-current {
    font-size: 13px;
  }
}
/* new */
/* =========================
CSS VARIABLES
========================= */
:root {
  --wabt-primary: red;
  --wabt-dark: #111111;
  --wabt-gray: #f8f9fa;
  --wabt-white: #ffffff;
  --wabt-text: #000;
  --wabt-border: #e8e8e8;
  --wabt-radius: 16px;
  --wabt-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --wabt-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wabt-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* =========================
SECTION HEADER
========================= */
.wabt-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.wabt-section-tag {
  display: inline-block;
  color: var(--wabt-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.wabt-section-title {
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 600;
  color: var(--wabt-dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.wabt-section-title span {
  color: #ff0000;
  font-weight: 600;
}

.wabt-section-desc {
  font-size: 16px;
  color: var(--wabt-text);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.wabt-text {
  font-size: 16px;
  color: var(--wabt-text);
  line-height: 1.8;
  margin-bottom: 15px;
}

/* =========================
OUR STORY SECTION
========================= */
.wabt-story {
  padding: 100px 0 80px;
  background: var(--wabt-white);
}

.wabt-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wabt-story-image {
  position: relative;
  border-radius: var(--wabt-radius);
  overflow: hidden;
}

.wabt-story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--wabt-radius);
}

.wabt-story-exp {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--wabt-primary);
  color: var(--wabt-white);
  padding: 20px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 77, 0, 0.4);
}

.wabt-story-exp span {
  display: block;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.wabt-story-exp small {
  font-size: 13px;
  opacity: 0.9;
}

/* =========================
MISSION & VISION
========================= */
.wabt-mission {
  padding: 80px 0;
  background: var(--wabt-gray);
}

.wabt-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.wabt-mission-card {
  background: var(--wabt-white);
  border-radius: var(--wabt-radius);
  padding: 45px 35px;
  border: 1px solid var(--wabt-border);
  transition: var(--wabt-transition);
}

.wabt-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--wabt-shadow);
  border-color: var(--wabt-primary);
}

.wabt-mission-icon {
  font-size: 45px;
  margin-bottom: 20px;
}

.wabt-mission-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--wabt-dark);
}

.wabt-mission-text {
  color: var(--wabt-text);
  margin-bottom: 20px;
  line-height: 1.7;
}

.wabt-mission-list {
  list-style: none;
  padding: 0;
}

.wabt-mission-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--wabt-dark);
}

.wabt-mission-list li i {
  color: #28a745;
}

/* =========================
EXPERTISE
========================= */
.wabt-expertise {
  padding: 80px 0;
  background: var(--wabt-white);
}

.wabt-expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.wabt-expertise-item {
  border-radius: var(--wabt-radius);
  overflow: hidden;
  cursor: pointer;
}

.wabt-expertise-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--wabt-radius);
  aspect-ratio: 1/1;
}

.wabt-expertise-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wabt-expertise-item:hover .wabt-expertise-img img {
  transform: scale(1.1);
}

.wabt-expertise-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: var(--wabt-white);
  font-weight: 600;
  font-size: 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.wabt-expertise-item:hover .wabt-expertise-overlay {
  transform: translateY(0);
}

.wabt-expertise-note {
  text-align: center;
  color: var(--wabt-text);
  font-style: italic;
  font-size: 15px;
}

/* =========================
WHY TRUST US
========================= */
.wabt-trust {
  padding: 80px 0;
  background: var(--wabt-gray);
}

.wabt-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wabt-trust-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.wabt-trust-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--wabt-white);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--wabt-border);
  transition: var(--wabt-transition);
}

.wabt-trust-feature:hover {
  border-color: var(--wabt-primary);
  transform: translateX(5px);
  box-shadow: var(--wabt-shadow);
}

.wabt-trust-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(255, 77, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wabt-primary);
  font-size: 20px;
}

.wabt-trust-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--wabt-dark);
}

.wabt-trust-info p {
  font-size: 14px;
  color: var(--wabt-text);
}

.wabt-trust-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--wabt-radius);
}

/* =========================
SAFETY
========================= */
.wabt-safety {
  padding: 80px 0;
  background: var(--wabt-white);
}

.wabt-safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wabt-safety-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--wabt-radius);
}

.wabt-safety-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.wabt-safety-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--wabt-dark);
  font-weight: 500;
}

.wabt-safety-list li i {
  color: #28a745;
  font-size: 18px;
}

.wabt-safety-note {
  color: var(--wabt-primary);
  font-weight: 600;
  font-size: 15px;
  margin-top: 20px;
}

/* =========================
EXPERIENCE STATS
========================= */
.wabt-experience {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff4d00 0%, #cc3300 100%);
  color: var(--wabt-white);
}

.wabt-experience .wabt-section-title,
.wabt-experience .wabt-section-desc,
.wabt-experience .wabt-section-tag {
  color: var(--wabt-white);
}

.wabt-experience .wabt-section-title span {
  color: #ffffff;
}

.wabt-experience-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.wabt-stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 35px 20px;
  border-radius: var(--wabt-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--wabt-transition);
}

.wabt-stat-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.wabt-stat-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.wabt-stat-label {
  font-size: 15px;
  opacity: 0.9;
}

/* =========================
REVIEWS SECTION
========================= */
.wabt-reviews {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

/* =========================
CAROUSEL WRAPPER
========================= */
.wabt-carousel-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
}

.wabt-carousel-track {
  display: flex;
  gap: 25px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
}

.wabt-carousel-track:active {
  cursor: grabbing;
}


/* =========================
VIDEO SECTION
========================= */
.wabt-video {
  padding: 80px 0;
  background: #f8f9fa;
  overflow: hidden;
}

/* Carousel Wrapper */
.wabt-video-carousel {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
}

.wabt-video-track {
  display: flex;
  gap: 25px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
}

.wabt-video-track:active {
  cursor: grabbing;
}

/* Slide */
.wabt-video-slide {
  min-width: 380px;
  max-width: 380px;
  flex-shrink: 0;
}

/* Video Card */
.wabt-video-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: all 0.4s ease;
  cursor: pointer;
  height: 100%;
}

.wabt-video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: #ff4d00;
}

/* Thumbnail */
.wabt-video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #1a1a1a;
}

.wabt-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.wabt-video-card:hover .wabt-video-thumb img {
  transform: scale(1.1);
}

/* Overlay */
.wabt-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  transition: opacity 0.4s ease;
}

/* Play Button */
.wabt-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.wabt-play-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 77, 0, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(255, 77, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.wabt-play-icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: wabtPulse 2.5s infinite;
}

@keyframes wabtPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.wabt-play-icon svg {
  width: 22px;
  height: 26px;
  margin-left: 3px;
  transition: transform 0.3s ease;
}

.wabt-video-card:hover .wabt-play-icon {
  background: #ffffff;
  color: #ff4d00;
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 12px 40px rgba(255, 77, 0, 0.6);
}

/* Duration */
.wabt-video-time {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

/* Details */
.wabt-video-details {
  padding: 20px 22px;
}

.wabt-video-details h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 6px;
  line-height: 1.3;
}

.wabt-video-details p {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

/* =========================
NAVIGATION
========================= */
.wabt-video-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.wabt-video-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  transition: all 0.3s ease;
}

.wabt-video-nav-btn:hover {
  background: #ff4d00;
  border-color: #ff4d00;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 77, 0, 0.3);
  transform: scale(1.08);
}

.wabt-video-nav-btn svg {
  width: 20px;
  height: 20px;
}

/* Dots */
.wabt-video-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.wabt-video-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.wabt-video-dot.wabt-dot-active {
  background: #ff4d00;
  width: 30px;
  border-radius: 5px;
}

/* =========================
VIDEO MODAL
========================= */
.wabt-video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.wabt-video-modal.wabt-modal-open {
  display: flex;
}

.wabt-video-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  backdrop-filter: blur(8px);
  animation: wabtFadeIn 0.3s ease;
}

@keyframes wabtFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.wabt-video-modal-box {
  position: relative;
  width: 92%;
  max-width: 950px;
  aspect-ratio: 16/9;
  z-index: 1;
  animation: wabtPopIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes wabtPopIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.wabt-video-modal-frame {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.wabt-video-modal-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.wabt-video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
  z-index: 2;
}

.wabt-video-modal-close:hover {
  background: #ff4d00;
  border-color: #ff4d00;
  transform: rotate(90deg);
}

.wabt-video-modal-close svg {
  width: 18px;
  height: 18px;
}

/* =========================
TABLET
========================= */
@media (max-width: 991px) {
  .wabt-video-slide {
    min-width: 340px;
    max-width: 340px;
  }

  .wabt-play-icon {
    width: 60px;
    height: 60px;
  }

  .wabt-play-icon svg {
    width: 18px;
    height: 22px;
  }
}

/* =========================
MOBILE - Single Video
========================= */
@media (max-width: 768px) {
  .wabt-video {
    padding: 60px 0;
  }

  .wabt-video-carousel {
    padding: 15px 20px;
  }

  .wabt-video-track {
    gap: 15px;
  }

  .wabt-video-slide {
    min-width: calc(100vw - 70px);
    max-width: calc(100vw - 70px);
  }

  .wabt-video-details h3 {
    font-size: 1rem;
  }

  .wabt-video-details p {
    font-size: 13px;
  }

  .wabt-video-nav-btn {
    width: 42px;
    height: 42px;
  }

  .wabt-video-modal-box {
    width: 96%;
  }

  .wabt-video-modal-close {
    top: -40px;
    width: 38px;
    height: 38px;
  }
}

/* =========================
SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .wabt-video {
    padding: 50px 0;
  }

  .wabt-video-carousel {
    padding: 10px 15px;
  }

  .wabt-video-slide {
    min-width: calc(100vw - 50px);
    max-width: calc(100vw - 50px);
  }

  .wabt-video-card {
    border-radius: 14px;
  }

  .wabt-play-icon {
    width: 55px;
    height: 55px;
  }

  .wabt-play-icon svg {
    width: 16px;
    height: 20px;
  }

  .wabt-video-time {
    bottom: 8px;
    right: 8px;
    padding: 3px 8px;
    font-size: 11px;
  }

  .wabt-video-details {
    padding: 15px 18px;
  }

  .wabt-video-nav {
    margin-top: 30px;
    gap: 15px;
  }

  .wabt-video-nav-btn {
    width: 36px;
    height: 36px;
  }

  .wabt-video-nav-btn svg {
    width: 16px;
    height: 16px;
  }

  .wabt-video-modal-close {
    top: -35px;
    width: 34px;
    height: 34px;
  }
}

/* =========================
FAQ
========================= */
.wabt-faq {
  padding: 80px 0;
  background: var(--wabt-white);
}

.wabt-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wabt-faq-item {
  background: var(--wabt-white);
  border: 1px solid var(--wabt-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--wabt-transition);
}

.wabt-faq-item.wabt-active {
  border-color: var(--wabt-primary);
  box-shadow: var(--wabt-shadow);
}

.wabt-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: inherit;
  transition: color 0.3s ease;
}

.wabt-faq-question:hover .wabt-faq-qtext {
  color: var(--wabt-primary);
}

.wabt-faq-qtext {
  font-size: 16px;
  font-weight: 600;
  color: var(--wabt-dark);
  flex: 1;
  padding-right: 20px;
}

.wabt-faq-icon {
  width: 35px;
  height: 35px;
  min-width: 35px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wabt-primary);
  font-size: 14px;
  transition: all 0.4s ease;
}

.wabt-faq-item.wabt-active .wabt-faq-icon {
  background: var(--wabt-primary);
  color: var(--wabt-white);
  transform: rotate(45deg);
}

.wabt-faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.45s ease;
}

.wabt-faq-ainner {
  padding: 0 25px 20px;
}

.wabt-faq-ainner p {
  color: var(--wabt-text);
  line-height: 1.8;
  font-size: 15px;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 991px) {
  .wabt-story-grid,
  .wabt-trust-grid,
  .wabt-safety-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wabt-mission-grid {
    grid-template-columns: 1fr;
  }

  .wabt-experience-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .wabt-story-image img,
  .wabt-trust-image img,
  .wabt-safety-image img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .wabt-container {
    padding: 0 20px;
  }

  .wabt-section-header {
    margin-bottom: 40px;
  }

  .wabt-story,
  .wabt-mission,
  .wabt-expertise,
  .wabt-trust,
  .wabt-safety,
  .wabt-experience,
  .wabt-reviews,
  .wabt-video,
  .wabt-faq {
    padding: 60px 0;
  }

  .wabt-mission-card {
    padding: 30px 25px;
  }

  .wabt-expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wabt-reviews-grid {
    grid-template-columns: 1fr;
  }

  .wabt-stat-number {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .wabt-container {
    padding: 0 15px;
  }

  .wabt-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wabt-experience-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .wabt-stat-item {
    padding: 25px 15px;
  }

  .wabt-stat-number {
    font-size: 30px;
  }

  .wabt-faq-question {
    padding: 16px 18px;
  }

  .wabt-faq-qtext {
    font-size: 14px;
  }
}


/* =========================

/* =========================
GOOGLE REVIEWS SECTION
========================= */
.google-reviews {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.google-reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(66, 133, 244, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(234, 67, 53, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(251, 188, 5, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

/* =========================
SECTION HEADER
========================= */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 30px;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(66, 133, 244, 0.1);
  color: red;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  border: 1px solid rgba(66, 133, 244, 0.2);
}

.reviews-title {
  text-align: center;
  font-size: 48px;
  color: #1a1a1a;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.reviews-title span {
  background: red;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.overall-rating {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.rating-score {
  font-size: 48px;
  font-weight: 800;
  color: #fbbc05;
  line-height: 1;
  margin-bottom: 10px;
}

.rating-stars {
  font-size: 24px;
  color: red;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.rating-count {
  font-size: 14px;
  color: #666666;
}

/* =========================
BENTO GRID
========================= */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 25px;
  margin-bottom: 50px;
}

/* Card Size Variants */
.card-large {
  grid-column: span 2;
  grid-row: span 1;
}

.card-medium {
  grid-column: span 1;
  grid-row: span 1;
}

.card-small {
  grid-column: span 1;
  grid-row: span 1;
}

/* =========================
BENTO CARD - BASE STYLES
========================= */
.bento-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.1), transparent 70%);
  pointer-events: none;
  transition: all 0.6s ease;
  opacity: 0;
}

.bento-card:hover .card-glow {
  opacity: 1;
  transform: scale(1.5);
}

.card-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.2) 2px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.3;
  pointer-events: none;
}

/* =========================
CARD COLOR VARIANTS
========================= */

/* Blue Card */
.card-blue {
  background: linear-gradient(135deg, #e8f0fe 0%, #f0f4ff 100%);
  border-color: rgba(66, 133, 244, 0.15);
}

.card-blue .card-glow {
  background: radial-gradient(circle, rgba(66, 133, 244, 0.15), transparent 70%);
}

/* Pink Card */
.card-pink {
  background: linear-gradient(135deg, #fce4ec 0%, #fce4ec 100%);
  border-color: rgba(233, 30, 99, 0.15);
}

.card-pink .card-glow {
  background: radial-gradient(circle, rgba(233, 30, 99, 0.1), transparent 70%);
}

/* Green Card */
.card-green {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  border-color: rgba(76, 175, 80, 0.15);
}

.card-green .card-glow {
  background: radial-gradient(circle, rgba(76, 175, 80, 0.1), transparent 70%);
}

/* Orange Card */
.card-orange {
  background: linear-gradient(135deg, #fff3e0 0%, #fff8e1 100%);
  border-color: rgba(255, 152, 0, 0.15);
}

.card-orange .card-glow {
  background: radial-gradient(circle, rgba(255, 152, 0, 0.1), transparent 70%);
}

/* Purple Card */
.card-purple {
  background: linear-gradient(135deg, #f3e5f5 0%, #fce4ec 100%);
  border-color: rgba(156, 39, 176, 0.15);
}

.card-purple .card-glow {
  background: radial-gradient(circle, rgba(156, 39, 176, 0.1), transparent 70%);
}

/* Teal Card */
.card-teal {
  background: linear-gradient(135deg, #e0f2f1 0%, #e0f7fa 100%);
  border-color: rgba(0, 150, 136, 0.15);
}

.card-teal .card-glow {
  background: radial-gradient(circle, rgba(0, 150, 136, 0.1), transparent 70%);
}

/* Indigo Card */
.card-indigo {
  background: linear-gradient(135deg, #e8eaf6 0%, #ede7f6 100%);
  border-color: rgba(63, 81, 181, 0.15);
}

.card-indigo .card-glow {
  background: radial-gradient(circle, rgba(63, 81, 181, 0.1), transparent 70%);
}

/* Card Header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.user-details h4 {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 3px 0;
}

.review-date {
  color: #888888;
  font-size: 13px;
}

.google-icon {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.bento-card:hover .google-icon {
  opacity: 1;
}

/* Stars */
.stars {
  color: #fbbc05;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

/* Review Text */
.review-text {
  color: #444444;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

.card-large .review-text {
  font-size: 16px;
  line-height: 1.8;
}

.card-small .review-text {
  font-size: 14px;
  line-height: 1.6;
}

/* Card Footer */
.card-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 15px;
  position: relative;
  z-index: 1;
}

.verified {
  color: #34a853;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* =========================
CTA BUTTON
========================= */
.reviews-cta {
  text-align: center;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #000;
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(66, 133, 244, 0.3);
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.view-all-btn:hover {
  background: yellow;
  color: #000;
  /* border-color: red; */
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(66, 133, 244, 0.2);
}

.view-all-btn svg {
  transition: transform 0.3s ease;
}

.view-all-btn:hover svg {
  transform: translateX(5px);
}

/* =========================
RESPONSIVE - TABLET
========================= */
@media (max-width: 1200px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .card-large {
    grid-column: span 2;
  }
}

@media (max-width: 991px) {
  .google-reviews {
    padding: 80px 0;
  }
  
  .reviews-title {
    font-size: 38px;
  }
  
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .card-large,
  .card-medium,
  .card-small {
    grid-column: span 1;
  }
  
  .bento-card {
    padding: 25px;
    border-radius: 20px;
  }
  
  .rating-score {
    font-size: 40px;
  }
}

/* =========================
RESPONSIVE - MOBILE
========================= */
@media (max-width: 768px) {
  .google-reviews {
    padding: 60px 0;
  }
  
  .reviews-container {
    padding: 0 20px;
  }
  
  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .reviews-header-right {
    width: 100%;
  }
  
  .overall-rating {
    padding: 25px;
  }
  
  .reviews-title {
    font-size: 32px;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .card-large,
  .card-medium,
  .card-small {
    grid-column: span 1;
  }
  
  .bento-card {
    padding: 25px 20px;
    border-radius: 18px;
  }
  
  .user-avatar {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  
  .user-details h4 {
    font-size: 15px;
  }
  
  .review-text {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .card-large .review-text {
    font-size: 15px;
  }
  
  .stars {
    font-size: 15px;
  }
  
  .rating-score {
    font-size: 36px;
  }
  
  .rating-stars {
    font-size: 20px;
  }
  
  .view-all-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* =========================
RESPONSIVE - SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .google-reviews {
    padding: 50px 0;
  }
  
  .reviews-container {
    padding: 0 15px;
  }
  
  .reviews-title {
    font-size: 28px;
  }
  
  .bento-grid {
    gap: 15px;
  }
  
  .bento-card {
    padding: 20px;
    border-radius: 16px;
  }
  
  .user-avatar {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
  
  .stars {
    font-size: 14px;
  }
  
  .review-text {
    font-size: 13px;
  }
  
  .overall-rating {
    padding: 20px;
  }
  
  .rating-score {
    font-size: 32px;
  }
  
  .view-all-btn {
    padding: 12px 25px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
}