/* ==========================================================================
   VARIABLES & GLOBAL UTILITIES
   ========================================================================== */
:root {
  --primary: #4ab7ac;
  --dark: #348b83;
  --light-bg: #e6fffc;
  --white: #ffffff;
  --black: #000000;
  --text-color: #333333;
  --gray-light: #f9f9f9;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* Utility Classes */
.text-primary {
  color: var(--primary);
}
.text-white {
  color: var(--white);
}
.text-center {
  text-align: center;
}
.text-uppercase {
  text-transform: uppercase;
}
.mt-15 {
  margin-top: 15px;
}
.top-margin {
  margin-top: 40px;
}

.container-1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  border-radius: 2px;
  border: none;
  cursor: pointer;
}

.btn-dark {
  background-color: #333;
  color: var(--white);
}
.btn-dark:hover {
  background-color: var(--primary);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--dark);
}

.btn-primary-outline {
  color: white;
  border: 2px solid var(--primary);
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.btn-primary-outline:hover {
  background-color: var(--primary);
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transition:
    opacity 0.8s ease-in-out,
    visibility 0.8s;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 6s ease-out;
  z-index: -2;
}

.slide.active .slide-bg {
  transform: scale(1.05);
}

.slide-overlay {
  display: none;
}

.slide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  gap: 40px;
}

.slide-content-box {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-title,
.slide-subtitle,
.slide-desc {
  color: var(--white);
  text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.8);
}

.slide-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 10px 0;
}

.slide-subtitle {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.slide-desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}

.slide-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.slide-buttons .btn {
  border-radius: 4px;
  padding: 14px 32px;
  letter-spacing: 1px;
}

/* Review Box */
.slide-images-collage {
  position: absolute;
  bottom: 20px;
  right: 30px;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
}

.review-slider-box {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: white;
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--primary);
}

.review-slider-box div {
  font-size: 40px;
  font-weight: 600;
  margin: 0;
}

.review-slider-box p {
  font-size: 18px;
  margin: 0 0 15px;
  font-weight: 500;
}

.review-slider-box span {
  float: right;
}

@media (max-width: 700px) {
  .review-slider-box {
    display: none;
  }
}
/* Popular Services Grid (Slide 5) */
.center-content {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slide.active .center-content .slide-title {
  transition-delay: 0.2s;
  margin-bottom: 30px;
  font-size: 52px;
}

.popular-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 900px;
}

.service-card {
  position: relative;
  height: 160px;
  overflow: hidden;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  pointer-events: none;
  transition: opacity 0.3s;
}

.service-card:hover::after {
  opacity: 0.6;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-label {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  color: var(--white);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  z-index: 2;
  transition: color 0.3s;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.service-card:hover .service-label {
  color: var(--primary);
}

@keyframes cardEntrance {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide.active .service-card {
  animation: cardEntrance 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.slide.active .service-card:nth-child(1) {
  animation-delay: 0.4s;
}
.slide.active .service-card:nth-child(2) {
  animation-delay: 0.5s;
}
.slide.active .service-card:nth-child(3) {
  animation-delay: 0.6s;
}
.slide.active .service-card:nth-child(4) {
  animation-delay: 0.7s;
}
.slide.active .service-card:nth-child(5) {
  animation-delay: 0.8s;
}
.slide.active .service-card:nth-child(6) {
  animation-delay: 0.9s;
}

/* Slider Navigation */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 30px;
}
.slider-arrow.next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translate(0%, -75%);
  display: flex;
  gap: 10px;
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slider-dots span {
  font-size: 15px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: color 0.3s;
}

.dot {
  padding: 10px 13px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dot.active {
  background: white;
  color: var(--primary);
}

/* ==========================================================================
   OFFERS SECTION
   ========================================================================== */
.home-offers-section {
  padding: 80px 0;
  background-color: #fafafa;
}

.offers-layout {
  display: flex;
  align-items: center;
  gap: 50px;
}

.offers-left {
  width: 35%;
}

.offers-left p {
  font-size: 15px;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 25px;
}

.offers-right {
  width: 65%;
  overflow: hidden;
}

.wow-slider-window {
  overflow: hidden;
  width: 100%;
}

.wow-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.wow-card-wrapper {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  padding-right: 20px;
}

.modern-offer-card {
  display: flex;
  background: var(--white);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  height: 220px;
}

.offer-card-left {
  width: 45%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-discount {
  margin-bottom: 10px;
}

.offer-discount span {
  font-size: 12px;
  color: var(--black);
  letter-spacing: 1px;
}

.offer-discount strong {
  display: block;
  font-size: 32px;
  color: var(--primary);
  font-weight: 300;
  line-height: 1;
}

.offer-title {
  font-size: 18px;
  font-weight: 300;
  color: var(--black);
  margin: 0;
}

.offer-card-right {
  width: 80%;
  height: 100%;
}

.offer-card-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offers-nav {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 15px;
  padding-right: 20px;
}

.offers-nav button {
  background: transparent;
  border: none;
  font-size: 14px;
  color: #888;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.offers-nav button:hover {
  color: var(--primary);
}

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.cta-strip {
  background-color: var(--primary);
  padding: 25px 0;
}

.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-text {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.cta-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 10px 30px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.cta-btn:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--primary);
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-modern-section {
  padding: 80px 0;
  background-color: var(--white);
}

.stats-modern-grid {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 40px;
  align-items: center;
}

.stats-header {
  text-align: left;
}

.stats-subheading {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.stats-header h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 750;
  color: var(--text-color);
  margin-bottom: 15px;
  margin-top: 0;
}

.stats-header p {
  font-size: 15px;
  color: var(--black);
  line-height: 1.6;
}

.stats-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.modern-stat-card {
  background: var(--gray-light);
  padding: 40px 20px;
  text-align: center;
  border-radius: var(--radius-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-bottom: 3px solid transparent;
}

.modern-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--primary);
  background: var(--white);
}

.modern-stat-card .stat-icon {
  font-size: 45px;
  display: block;
  margin-bottom: 20px;
}

.modern-stat-card h3 {
  font-size: 32px;
  font-weight: 300;
  color: var(--primary);
  margin: 0 0 10px 0;
}

.modern-stat-card p {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

/* ==========================================================================
   CLIENTS MARQUEE
   ========================================================================== */
.clients-marquee-section {
  padding: 20px 0 80px 0;
  overflow: hidden;
  background-color: var(--white);
}

.marquee-heading {
  font-size: 30px;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
  align-items: center;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track img {
  height: 60px;
  width: auto;
  margin: 0 40px;
  opacity: 1;
  transition: var(--transition);
  cursor: pointer;
}

.marquee-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.sp-services-grid-wrapper {
  background-color: var(--white);
  padding: 80px 0;
}

.grid-heading {
  font-size: 36px;
  color: var(--text-color);
  margin: 0 0 5px 0;
}

.grid-subheading {
  color: var(--black);
  font-size: 15px;
  margin-bottom: 40px;
}

.sp-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.sp-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.sp-card.hidden-card {
  display: none;
}

.sp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.sp-card-img {
  height: 200px;
  overflow: hidden;
}

.sp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sp-card:hover .sp-card-img img {
  transform: scale(1.08);
}

.sp-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sp-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.sp-card-header h3 {
  font-size: 20px;
  color: var(--text-color);
  font-weight: 700;
  margin: 0;
  transition: color 0.3s;
}

.sp-card:hover .sp-card-header h3 {
  color: var(--primary);
}

.card-arrow {
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
  transition: transform 0.3s;
}

.sp-card:hover .card-arrow {
  transform: translateX(5px);
}

.sp-card-content p {
  font-size: 14px;
  color: var(--black);
  line-height: 1.6;
  margin: 0;
}

.view-all-text-link {
  color: var(--text-color);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
  border-bottom: 1px solid transparent;
}

.view-all-text-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-choose-us-section {
  margin: 0 auto;
  background-color: #e8f4f1;
  padding: 60px 40px;
  border-radius: var(--radius-md);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #2d3748;
  margin-bottom: 20px;
  font-weight: 500;
  justify-content: center;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #38b2ac;
  border-radius: 50%;
}

.main-heading {
  font-size: 42px;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
}

.main-description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 40px;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: #e8f4f1;
  color: #38b2ac;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

.innercard {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.feature-description {
  font-size: 14px;
  color: var(--black);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   OUR PROCESS
   ========================================================================== */
.our-process-section {
  max-width: 1200px;
  padding: 80px 20px 40px 20px;
  background: var(--white);
  margin: 0 auto;
}

.process-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.process-content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #4a5568;
  margin-bottom: 16px;
  font-weight: 500;
}

.process-content .section-heading {
  font-size: 42px;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.2;
  margin-bottom: 20px;
}

.process-content .section-description {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.7;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.process-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 12px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  transition: var(--transition);
  background: #fff;
  min-height: 140px;
}

.process-card .card-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d3748;
}

.process-card .card-icon svg {
  width: 34px;
  height: 34px;
  display: block;
  fill: none;
  stroke: currentColor;
}

.process-card:hover .card-icon,
.process-card:hover .card-icon svg,
.process-card:hover .card-text,
.process-card.featured-card .card-icon,
.process-card.featured-card .card-icon svg,
.process-card.featured-card .card-text {
  color: var(--white);
}

.process-card:hover {
  border-color: #38b2ac;
  transform: translateY(-4px);
  background: #38b2ac;
  box-shadow: 0 8px 25px rgba(56, 178, 172, 0.15);
}

.process-card.featured-card {
  background: #38b2ac;
  border-color: #38b2ac;
  color: white;
}

.card-icon {
  margin-bottom: 12px;
}

.card-text {
  font-size: 17px;
  font-weight: 600;
  color: #4a5568;
  line-height: 1.3;
}

/* ==========================================================================
   REAL RESULTS (BEFORE/AFTER)
   ========================================================================== */
.real-results-section {
  max-width: 1200px;
  padding: 40px 20px;
  background: var(--white);
  margin: 0 auto;
  user-select: none;
}

.results-header {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.results-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #4a5568;
  margin-bottom: 16px;
  font-weight: 500;
}

.results-header .section-heading {
  font-size: 40px;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.2;
  margin-bottom: 16px;
}

.results-header .section-description {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.6;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.result-item {
  text-align: center;
}

.result-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a202c;
  margin-top: 20px;
}

.before-after-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  aspect-ratio: 4 / 3;
  user-select: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ba-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.ba-image {
  position: absolute;
  inset: 0;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-before {
  z-index: 1;
}

.ba-after {
  z-index: 2;
  clip-path: inset(0 0 0 50%);
}

.ba-label {
  position: absolute;
  bottom: 16px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 5;
  color: white;
}

.ba-label-before {
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
}

.ba-label-after {
  right: 16px;
  background: #38b2ac;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle-line {
  width: 4px;
  height: 100%;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-handle-icon {
  font-size: 20px;
  color: #38b2ac;
  font-weight: bold;
}

/* ==========================================================================
   TRUSTED BY GOOGLE
   ========================================================================== */
.trusted-google-section {
  padding: 40px 20px;
  background: var(--white);
}

.google-header {
  /* max-width: 700px; */
  margin: 0 auto 50px;
  text-align: center;
}

.google-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #4a5568;
  margin-bottom: 16px;
  font-weight: 500;
}

.google-header .section-heading {
  font-size: 40px;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.2;
  margin-bottom: 16px;
}

.google-text .g-blue {
  color: #4285f4;
}
.google-text .g-red {
  color: #ea4335;
}
.google-text .g-yellow {
  color: #fbbc05;
}
.google-text .g-green {
  color: #34a853;
}

.google-header .section-description {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.6;
  max-width: 700px;
  margin: 10px auto;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #f7fafc;
  border-radius: 50px;
}

.rating-score {
  font-size: 28px;
  font-weight: 700;
  color: #1a202c;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 22px;
}

.star.filled {
  color: #fbbf24;
}

.rating-count {
  font-size: 15px;
  color: #718096;
}

.testimonials-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.testimonial-card {
  background: #e8f4f1;
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.quote-icon {
  flex-shrink: 0;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.star-gold {
  color: #fbbf24;
  font-size: 20px;
}

.review-text {
  font-size: 16px;
  color: #2d3748;
  line-height: 1.7;
  margin-bottom: 24px;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  margin-top: 30px;
  bottom: 0;
  left: 30px;
  right: 30px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  font-size: 23px;
}

.reviewer-name {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1a202c;
}

.name-star {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.name-star::after {
  content: "\2605";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: var(--black);
  color: gold;
  border-radius: 50%;
  font-size: 15px;
  padding: 1px;
  position: absolute;
  bottom: -3px;
  right: -8px;
  border: 2px solid var(--white);
  z-index: 2;
  pointer-events: none;
}

.reviewer-role {
  font-size: 14px;
  color: #718096;
}

.google-logo {
  flex-shrink: 0;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid #e2e8f0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  color: #4a5568;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
  background: #38b2ac;
  border-color: #38b2ac;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: -25px;
}
.slider-next {
  right: -25px;
}

.google-review-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;

  background-color: #4ab7ac;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  color: white;
  text-decoration: none;
}
.google-review-btn:hover {
  color: #000000;
  transform: scale(1.05);
}


.rating-review{
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
  flex-wrap: wrap;
}
#toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #111;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 9999;
}

#toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  /* Hero */
  .hero-slider-section {
    height: 500px;
  }
  .slide-inner {
    gap: 20px;
  }
  .slide-content-box {
    width: 90%;
  }
  .slide-images-collage {
    width: 50%;
  }
  .slide-title {
    font-size: 44px;
  }
  .popular-services-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 700px;
    gap: 10px;
  }
  .service-card {
    height: 120px;
  }
  .service-label {
    font-size: 13px;
    bottom: 10px;
  }

  /* Why Choose Us */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Offers */
  .offers-layout {
    flex-direction: column;
    text-align: center;
  }
  .offers-left,
  .offers-right {
    width: 100%;
  }
  .offers-nav {
    justify-content: center;
    padding-right: 0;
  }

  /* Stats */
  .stats-modern-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .stats-header {
    text-align: center;
  }

  /* Services Grid */
  .sp-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Process */
  .process-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .process-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Results */
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Hero */
  .hero-slider-section {
    height: 550px;
    min-height: auto;
  }
  .slide-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 60px 15px 40px 15px;
  }
  .slide-content-box {
    width: 100%;
    align-items: center;
    margin-bottom: 25px;
    padding: 0;
  }
  .slide-title {
    font-size: 30px;
    margin-bottom: 5px;
  }
  .slide-subtitle {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .slide-desc {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .slide-buttons {
    justify-content: center;
    flex-direction: row;
    width: 100%;
    gap: 10px;
  }
  .slide-buttons .btn {
    width: auto;
    text-align: center;
    padding: 10px 18px;
    font-size: 12px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
  .slide-images-collage {
    width: 100%;
    justify-content: center;
    height: 120px;
  }
  .slide-images-collage img {
    display: none;
  }
  .slide.active .center-content .slide-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .popular-services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .service-card {
    height: 90px;
  }
  .service-label {
    font-size: 11px;
    bottom: 0;
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    text-shadow: none;
  }
  .service-card::after {
    display: none;
  }
  .slider-dots {
    bottom: 15px;
    top: 93%;
    left: 50%;
    flex-direction: row;
    transform: translate(-50%, -50%);
  }

  /* Why Choose Us */
  .why-choose-us-section {
    padding: 40px 24px;
  }
  .main-heading {
    font-size: 32px;
  }
  .main-description {
    font-size: 16px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-card {
    padding: 20px;
  }

  /* Offers */
  .modern-offer-card {
    flex-direction: column;
    height: auto;
  }
  .offer-card-left,
  .offer-card-right {
    width: 100%;
    padding: 30px 0;
  }
  .offer-card-right {
    height: 200px;
  }

  /* CTA */
  .cta-strip-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  /* Stats */
  .stats-cards-wrapper {
    grid-template-columns: 1fr;
  }

  /* Services Grid */
  .sp-services-grid-wrapper {
    padding: 50px 0;
  }
  .grid-heading {
    font-size: 30px;
  }
  .sp-photo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Process */
  .process-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-content .section-heading {
    font-size: 32px;
  }

  /* Results */
  .results-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .results-header .section-heading {
    font-size: 32px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .google-header .section-heading {
    font-size: 32px;
  }
  .rating-badge {
    flex-wrap: wrap;
    justify-content: center;
  }
  .slider-nav {
    width: 40px;
    height: 40px;
  }
  .slider-prev {
    left: 10px;
  }
  .slider-next {
    right: 10px;
  }
  .top-margin {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 28px;
  }
  .section-label {
    font-size: 14px;
  }
  .feature-title {
    font-size: 15px;
  }
  .testimonial-card {
    padding: 24px;
  }
  .process-cards {
    grid-template-columns: 1fr 1fr;
  }
  .process-card {
    min-height: 120px;
    padding: 20px 10px;
  }
  .slider-nav {
    display: none;
  }
}
