/* =========================
   IMPROVED HERO SECTION
========================= */
.hero-corporate {
  margin-top: -80px;
  border-radius: 8px;
  width: 100%;
  padding: var(--space-2xl) 0;
  background-color: var(--gray-900);
  /* Subtle radial gradient for depth */
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
    url("../img/banner/index-banner.png")
      center/cover no-repeat;
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

/* --- Content Styling --- */
.hero-left {
  flex: 1.2;
}

.hero-left h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); /* Fluid typography */
  color: var(--white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero-left p {
  color: var(--gray-400);
  max-width: 500px;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

/* --- Stats Grid --- */
.hero-stats {
  display: flex;
  gap: var(--space-lg);
  border-left: 1px solid var(--gray-700);
  padding-left: var(--space-lg);
}

.stat-item h3 {
  font-size: var(--fs-xl);
  color: var(--white);
  margin: 0;
}

.stat-item span {
  font-size: var(--fs-xs);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Visual Side --- */
.hero-right {
  flex: 1;
  position: relative;
  z-index: 1;
}

/* The faint decorative border behind the image */
.hero-right::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  border: 2px solid var(--white);
  border-radius: 80px 80px 80px 0;
  z-index: -1;
}

.hero-image-box img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 80px 80px 80px 0; /* Matches Reference Shape */
  box-shadow: var(--shadow-lg);
}

/* --- Review Card --- */
.hero-review {
  position: absolute;
  bottom: 10%;
  left: -10%;
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 220px;
  animation: float 4s ease-in-out infinite;
}

.stars {
  color: #ffd700;
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xs);
}

.review-text {
  color: var(--gray-900);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
}

.avatars {
  display: flex;
  padding-left: 10px;
}

.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  transition: var(--transition);
}

.avatars img:hover {
  transform: translateY(-5px);
  z-index: 10;
}

/* --- Animations --- */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
  .hero-flex {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    gap: var(--space-md);
  }

  .hero-stats {
    border-left: none;
    border-top: 1px solid var(--gray-700);
    padding: var(--space-md) 0 0 0;
  }

  .hero-review {
    left: 0;
    bottom: -20px;
  }
}

/* =========================
   HOME CATEGORIES SECTION
========================= */

.home-categories {
  background: var(--gray-100);
}

/* =========================
   TOP BANNERS
========================= */

.category-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

/* BANNER CARD */
.category-banner {
  position: relative;
  display: block;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
}

/* IMAGE */
.category-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

/* OVERLAY */
.category-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.2)
  );
}

/* CONTENT */
.banner-content {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 320px;
  color: var(--white);
}

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

.banner-content p {
  color: var(--gray-200);
  font-size: var(--fs-sm);
  margin-bottom: 12px;
}

/* HOVER EFFECT */
.category-banner:hover img {
  transform: scale(1.05);
}

/* =========================
   CATEGORY GRID
========================= */

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

/* CATEGORY CARD */
.category-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: var(--transition);
}

/* IMAGE */
.category-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: var(--transition);
}

/* LABEL */
.category-card span {
  color: var(--secondary);
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  box-shadow: var(--shadow-sm);
}

/* HOVER */
.category-card:hover {
  transform: translateY(-4px);
}

.category-card:hover span {
  color: var(--primary);
}

.category-card:hover img {
  transform: scale(1.05);
}

/* =========================
   TABLET (≤ 992px)
========================= */

@media (max-width: 992px) {
  .category-banner {
    height: 380px;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================
   MOBILE (≤ 768px) 🔥 APP STYLE
========================= */

@media (max-width: 768px) {
  /* SIDE-BY-SIDE BANNERS */
  .category-top {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .category-banner {
    height: 180px;
    border-radius: 12px;
  }

  /* CONTENT SMALL */
  .banner-content {
    top: auto;
    bottom: 15px;
    left: 15px;
    transform: none;
    max-width: 140px;
  }

  .banner-content h3 {
    font-size: 14px;
    line-height: 1.3;
  }

  .banner-content p {
    display: none;
  }

  .banner-content .btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  /* HORIZONTAL SCROLL GRID */
  .category-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 5px;
  }

  .category-grid::-webkit-scrollbar {
    display: none;
  }

  .category-card {
    min-width: 140px;
    flex: 0 0 auto;
  }

  .category-card img {
    height: 160px;
  }

  .category-card span {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* =========================
   SMALL MOBILE (≤ 480px)
========================= */

@media (max-width: 480px) {
  .category-banner {
    height: 150px;
  }

  .banner-content h3 {
    font-size: 12px;
  }

  .category-card {
    min-width: 120px;
  }

  .category-card img {
    height: 140px;
  }
}

/* =========================
   ABOUT CLEAN SECTION
========================= */

.home-about {
  background: var(--gray-100);
}

/* GRID */
.about-clean {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* =========================
   IMAGE
========================= */

.about-image-wrapper {
  position: relative;
}

.about-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* BADGE */
.about-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-badge h4 {
  color: var(--primary);
  margin: 0;
}

.about-badge span {
  font-size: var(--fs-xs);
  color: var(--gray-600);
}

/* =========================
   CONTENT
========================= */

.about-tag {
  font-size: var(--fs-sm);
  color: var(--accent);
}

.about-info h2 {
  margin: 10px 0;
}

/* FEATURES */
.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: var(--space-md) 0;
  font-size: var(--fs-sm);
}

/* CTA */
.about-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.about-phone {
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(73, 50, 153, 0.08);
  font-weight: var(--fw-medium);
}

/* PHONE LINK */
.about-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: inherit; /* keep text normal */
  text-decoration: none;
  position: relative;
}

/* ICON WRAPPER */
.about-phone i {
  font-size: 16px;
  color: var(--primary);
  position: relative;
  z-index: 2;
}

/* =========================
   CIRCULAR PULSE EFFECT
========================= */

.about-phone i::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(73, 50, 153, 0.15);
  z-index: -1;
  animation: pulse-ring 2s infinite;
}

/* pulse animation */
@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

/* =========================
   HOVER EFFECTS
========================= */

/* ONLY icon changes color */
.about-phone:hover {
  color: var(--secondary);
}

.about-phone:hover i {
  color: var(--secondary);
}

/* SHAKE ANIMATION */
.about-phone:hover i {
  animation: shake 0.4s ease;
}

/* shake keyframes */
@keyframes shake {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0);
  }
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .about-clean {
    grid-template-columns: 1fr;
  }

  .about-media img {
    height: 300px;
  }

  .about-badge {
    top: 15px;
    left: 15px;
    padding: 10px 14px;
  }
}

/* =========================
   MOBILE (APP STYLE)
========================= */

@media (max-width: 768px) {
  .about-clean {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /* IMAGE CARD */
  .about-media {
    padding: 0 10px;
  }

  .about-media img {
    height: 200px;
    border-radius: 16px;
  }

  /* BADGE SMALL */
  .about-badge {
    top: 10px;
    left: 10px;
    padding: 8px 10px;
  }

  .about-badge h4 {
    font-size: 14px;
  }

  .about-badge span {
    font-size: 10px;
  }

  /* CONTENT CARD */
  .about-info {
    background: var(--white);
    margin: 0 10px;
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
  }

  .about-info h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .about-info p {
    font-size: 13px;
  }

  /* FEATURES */
  .about-points {
    grid-template-columns: 1fr;
    font-size: 13px;
  }

  /* CTA */
  .about-cta {
    display: flex;
    flex-direction: row; /* 🔥 keep side by side */
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .about-cta .btn {
    align-items: center;
    flex: 1; /* take available space */
    width: auto; /* remove 50% */
  }

  .about-phone {
    font-size: 13px;
    white-space: nowrap;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
  .about-media img {
    height: 180px;
  }

  .about-info h2 {
    font-size: 18px;
  }

  .about-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .about-cta .btn {
    flex: 1;
  }

  .about-phone {
    white-space: nowrap;
    font-size: 13px;
    text-align: center;
  }
}

/* =========================
   SERVICES SECTION
========================= */

.home-services {
  background: var(--white);
}

/* HEADER */
.services-header {
  margin-bottom: var(--space-xl);
}

.services-tag {
  font-size: var(--fs-sm);
  color: var(--accent);
  letter-spacing: 1px;
}

.services-header h2 {
  margin-top: 10px;
}

/* =========================
   GRID
========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

/* CARD */
.service-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* subtle gradient glow */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(73, 50, 153, 0.05),
    rgba(92, 160, 197, 0.05)
  );
  opacity: 0;
  transition: var(--transition);
}

/* hover */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::after {
  opacity: 1;
}

/* FEATURED CARD */
.service-card.featured {
  border: 1px solid rgba(73, 50, 153, 0.2);
  transform: scale(1.02);
}

/* ICON */
.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(73, 50, 153, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.icon i {
  font-size: 20px;
  color: var(--primary);
  transition: var(--transition);
}

/* icon hover animation */
.service-card:hover .icon i {
  transform: scale(1.2) rotate(5deg);
}

/* TEXT */
.service-card h4 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: var(--fs-sm);
  color: var(--gray-600);
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   MOBILE (APP STYLE)
========================= */

@media (max-width: 768px) {
  .services-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 5px;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    min-width: 220px;
    flex: 0 0 auto;
    padding: 18px;
  }

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

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
  .service-card {
    min-width: 200px;
  }
}

/* =========================
   COLLECTIONS (FINAL)
========================= */

.collections-exact {
  background: var(--gray-100);
}

/* HEADER */
.section-header {
  margin-bottom: var(--space-xl);
}

.section-header p {
  max-width: 520px;
  margin: 10px auto 0;
}

/* =========================
   DESKTOP LAYOUT
========================= */

.collections-row {
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* CARD BASE */
.col-card {
  position: relative;
  width: 260px;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* STAGGER HEIGHTS */
.col-card:nth-child(1) {
  height: 360px;
}
.col-card:nth-child(2) {
  height: 360px;
  transform: translateY(-30px);
}
.col-card:nth-child(3) {
  height: 420px;
}
.col-card:nth-child(4) {
  height: 380px;
  transform: translateY(-20px);
}
.col-card:nth-child(5) {
  height: 360px;
}
.col-card:nth-child(6) {
  height: 420px;
}

/* IMAGE */
.col-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* OVERLAY */
.col-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
  transition: opacity 0.3s ease;
}

/* TEXT */
.col-overlay {
  position: absolute;
  bottom: 25px;
  left: 20px;
  color: var(--white);
  z-index: 2;
  transition: transform 0.3s ease;
}

.col-overlay h3 {
  color: var(--secondary);
  font-size: 22px;
  margin-bottom: 5px;
}

.col-overlay span {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* =========================
   🔥 PREMIUM HOVER EFFECT
========================= */

.col-card {
  position: relative;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

/* IMAGE */
.col-card img {
  transition: transform 0.8s ease;
}

/* OVERLAY GRADIENT ENHANCED */
.col-card::after {
  transition: opacity 0.4s ease;
}

/* EXTRA GLOW LAYER */
.col-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(73, 50, 153, 0.25),
    rgba(92, 160, 197, 0.2)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* TEXT */
.col-overlay {
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

/* =========================
   HOVER MAGIC ✨
========================= */

.col-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* IMAGE ZOOM + PARALLAX */
.col-card:hover img {
  transform: scale(1.12) rotate(1deg);
}

/* GLOW APPEARS */
.col-card:hover::before {
  opacity: 1;
}

/* DARK OVERLAY STRONGER */
.col-card:hover::after {
  opacity: 0.95;
}

/* TEXT LIFT */
.col-card:hover .col-overlay {
  transform: translateY(-8px);
}

/* =========================
   ✨ LIGHT SWEEP EFFECT
========================= */

.col-card span::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skewX(-20deg);
}

.col-card:hover span::after {
  animation: sweep 0.8s ease;
}

@keyframes sweep {
  0% {
    left: -120%;
  }
  100% {
    left: 130%;
  }
}

/* =========================
   TABLET (≤ 992px)
========================= */

@media (max-width: 992px) {
  .collections-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .col-card {
    width: 45%;
    height: 300px !important;
    transform: none !important;
  }
}

/* =========================
   MOBILE (GRID - 3 PER ROW 🔥)
========================= */

@media (max-width: 768px) {
  .collections-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .col-card {
    width: 100%;
    height: 180px !important;
    transform: none !important;
  }

  .col-overlay {
    bottom: 10px;
    left: 10px;
  }

  .col-overlay h3 {
    font-size: 14px;
  }

  .col-overlay span {
    font-size: 10px;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
  .collections-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .col-card {
    height: 160px !important;
  }

  .col-overlay h3 {
    font-size: 13px;
  }
}

/* =========================
   WHO WE ARE
========================= */

.who-we-are {
  background: var(--white);
}

/* GRID */
.who-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

/* =========================
   IMAGES
========================= */

.who-media {
  position: relative;
}

.who-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.who-img.main {
  padding: 4px;
  border-radius: var(--radius-lg);
  background: var(--primary);
}

.who-img.main img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.who-img.small {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 70%;
  border: var(--radius-md) solid var(--white);
}

.who-img.small img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}

/* =========================
   STATS BADGE
========================= */

.who-stats {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 15px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.who-stats h4 {
  color: var(--primary);
  margin: 0;
}

.who-stats span {
  font-size: 12px;
}

/* =========================
   CONTENT
========================= */

.who-tag {
  font-size: var(--fs-sm);
  color: var(--accent);
}

.who-content h2 {
  margin: 10px 0 15px;
}

.who-content p {
  margin-bottom: 12px;
  color: var(--gray-700);
  line-height: 1.6;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .who-wrapper {
    grid-template-columns: 1fr;
  }

  .who-img.small {
    position: static;
    margin-top: 15px;
    width: 100%;
  }
}

/* =========================
   MOBILE (APP STYLE)
========================= */

@media (max-width: 768px) {
  .who-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /* IMAGE STACK */
  .who-media {
    padding: 0 10px;
  }

  .who-img.main img {
    height: 220px;
  }

  .who-img.small img {
    height: 180px;
  }

  /* STATS SMALL */
  .who-stats {
    top: 10px;
    left: 10px;
    padding: 8px 12px;
  }

  .who-stats h4 {
    font-size: 14px;
  }

  /* CONTENT CARD */
  .who-content {
    background: var(--gray-100);
    margin: 0 10px;
    padding: 15px;
    border-radius: 16px;
  }

  .who-content h2 {
    font-size: 20px;
  }

  .who-content p {
    font-size: 13px;
  }
}

/* =========================
   COUNTER (POLISHED PREMIUM)
========================= */

.counter-premium {
  border-radius: 8px;
  padding: 60px 0;
  position: relative;
  overflow: hidden;

  /* 🎯 softer premium gradient */
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 40%, var(--primary) 100%);
}

/* subtle background softness */
.counter-premium::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(120px);
  top: -100px;
  left: -100px;
}

/* =========================
   GRID
========================= */

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* =========================
   CARD (REFINED)
========================= */

.counter-box {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.18);

  transition: all 0.35s ease;
  position: relative;
}

/* subtle inner glow */
.counter-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: 0.3s;
}

/* hover (clean, not aggressive) */
.counter-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.counter-box:hover::after {
  opacity: 1;
}

/* =========================
   TEXT (BETTER TYPOGRAPHY)
========================= */

.counter-box h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.counter-box p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   MOBILE (CLEAN GRID)
========================= */

@media (max-width: 768px) {
  .counter-premium {
    padding: 40px 0;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 10px;
  }

  .counter-box {
    padding: 20px;
  }

  .counter-box h2 {
    font-size: 28px;
  }

  .counter-box p {
    font-size: 12px;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
  .counter-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   PROCESS SECTION
========================= */

.process-section {
  background: var(--gray-100);
}

/* GRID */
.process-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* =========================
   STEPS (LEFT)
========================= */

.process-steps {
  position: relative;
  padding-left: 60px;
}

/* vertical line */
.process-steps::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(73, 50, 153, 0.2);
}

/* ITEM */
.process-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}

/* STEP NUMBER */
.step-circle {
  position: absolute;
  left: -45px;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
}

/* CARD */
.step-card {
  border-left: 3px solid var(--primary);
  margin-left: 20px;
  background: var(--white);
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

/* hover */
.process-item:hover .step-card {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

/* =========================
   RIGHT CONTENT
========================= */

.process-tag {
  font-size: var(--fs-sm);
  color: var(--accent);
}

.process-content h2 {
  margin: 10px 0;
}

.process-content p {
  margin-bottom: 20px;
  max-width: 420px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .process-wrapper {
    grid-template-columns: 1fr;
  }
}

/* =========================
   MOBILE (APP STYLE)
========================= */

@media (max-width: 768px) {
  .process-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .process-steps {
    padding-left: 50px;
  }

  .process-steps::before {
    left: 22px;
  }

  .step-circle {
    left: 4px;
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .process-item {
    margin-bottom: 25px;
  }

  .step-card {
    padding: 14px;
    margin-left: 10px;
  }

  /* RIGHT SIDE */
  .process-content {
    background: var(--white);
    padding: 16px;
    margin: 0 10px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
  }

  .process-content h2 {
    font-size: 20px;
  }

  .process-features {
    grid-template-columns: 1fr;
  }

  .process-mini-stats {
    justify-content: space-between;
  }

  .process-cta .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .process-steps {
    padding-left: 45px;
  }

  .step-circle {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .step-card h4 {
    font-size: 14px;
  }

  .step-card p {
    font-size: 12px;
  }
}

/* =========================
   FLOATING HIGHLIGHT CARD
========================= */

.process-highlight:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.process-highlight strong {
  display: block;
  margin-bottom: 5px;
}

/* =========================
   TRUST BADGE
========================= */

.process-badge {
  font-size: 12px;
  color: var(--gray-600);
  background: rgba(73, 50, 153, 0.08);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 15px;
}

/* =========================
   FEATURE POLISH
========================= */

.process-features div {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =========================
   MINI STATS IMPROVE
========================= */

.process-mini-stats {
  display: flex;
  gap: 25px;
  margin: 15px 0;
}

.process-mini-stats strong {
  font-size: 18px;
  color: var(--primary);
}

/* =========================
   CTA
========================= */

.process-cta .btn {
  padding: 10px 20px;
  border-radius: 8px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .process-highlight {
    padding: 12px;
  }

  .process-badge {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   SERVE SECTION
========================= */

.serve-section {
  background: linear-gradient(to bottom, #ffffff, #f8f9fc);
}

/* GRID */
.serve-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* =========================
   CONTENT
========================= */

.serve-tag {
  color: var(--accent);
  font-size: var(--fs-sm);
}

.serve-content h2 {
  margin: 10px 0 20px;
}

/* CARDS */
.serve-card {
  background: var(--white);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

/* hover */
.serve-card:hover {
  transform: translateX(5px);
  border-left: 3px solid var(--primary);
  box-shadow: var(--shadow-md);
}

/* =========================
   IMAGE
========================= */

.serve-media {
  position: relative;
}

.serve-img {
  padding: 4px;
  border-radius: var(--radius-lg);
  background: var(--primary);
}

.serve-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* BADGE */
.serve-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--white);
  padding: 15px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.serve-badge h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

.serve-badge span {
  font-size: 12px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .serve-wrapper {
    grid-template-columns: 1fr;
  }

  .serve-img img {
    height: 300px;
  }

  .serve-badge {
    left: 10px;
  }
}

/* =========================
   MOBILE (APP STYLE)
========================= */

@media (max-width: 768px) {
  .serve-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .serve-content {
    padding: 0 10px;
  }

  .serve-card {
    padding: 14px;
  }

  .serve-media {
    padding: 0 10px;
  }

  .serve-img img {
    height: 220px;
  }

  .serve-badge {
    position: static;
    margin-top: 10px;
    text-align: center;
  }
}

/* =========================
   CLIENTS SECTION
========================= */

.clients-section {
  background: var(--white);
}

/* =========================
   SLIDER
========================= */
.clients-slider {
  overflow: hidden;
  position: relative;
  margin-top: var(--space-lg);
}

/* TRACK */
.clients-track {
  display: flex;
  width: max-content;
  animation: scrollClients 40s linear infinite;
}

/* LOGO */
.client-logo {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.client-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;

  /* grayscale effect */
  filter: grayscale(100%) opacity(0.7);
  transition: var(--transition);
}

/* hover */
.client-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* =========================
   ANIMATION
========================= */

@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================
   PAUSE ON HOVER
========================= */

.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .client-logo {
    width: 120px;
    height: 60px;
  }

  .client-logo img {
    max-height: 50px;
  }
}

/* =========================
   WHAT WE DELIVER
========================= */

.deliver-section {
  background: var(--white);
}

/* GRID */
.deliver-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

/* =========================
   LEFT IMAGE (DIFFERENT STYLE)
========================= */

.deliver-media {
  position: relative;
}

/* gradient border effect */
.deliver-img {
  padding: 4px;
  border-radius: var(--radius-lg);
  background: var(--primary);
}

.deliver-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* floating stat */
.deliver-float {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.deliver-float strong {
  display: block;
  color: var(--primary);
}

.deliver-float span {
  font-size: 12px;
}

/* =========================
   CONTENT
========================= */

.deliver-tag {
  color: var(--accent);
  font-size: var(--fs-sm);
}

.deliver-content h2 {
  margin: 10px 0 20px;
}

/* BLOCK STYLE (NOT CARDS) */
.deliver-block {
  padding-left: 15px;
  margin-bottom: 18px;
  border-left: 2px solid rgba(73, 50, 153, 0.2);
  transition: 0.3s;
}

/* hover subtle */
.deliver-block:hover {
  border-left: 2px solid var(--primary);
  transform: translateX(4px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .deliver-wrapper {
    grid-template-columns: 1fr;
  }

  .deliver-img img {
    height: 300px;
  }

  .deliver-float {
    left: 10px;
  }
}

/* =========================
   MOBILE (APP STYLE)
========================= */

@media (max-width: 768px) {
  .deliver-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .deliver-media {
    padding: 0 10px;
  }

  .deliver-img img {
    height: 220px;
  }

  .deliver-float {
    position: static;
    margin-top: 10px;
    text-align: center;
  }

  .deliver-content {
    background: var(--gray-100);
    margin: 0 10px;
    padding: 15px;
    border-radius: 16px;
  }

  .deliver-content h2 {
    font-size: 20px;
  }

  .deliver-block {
    font-size: 13px;
  }
}

/* =========================
   EDITORIAL FABRIC BANNER
========================= */

.fabric-editorial {
  padding: 30px 0;
}

/* INNER STRIP */
.fabric-inner {
  height: 30vh;
  min-height: 240px;

  border-radius: 8px;
  overflow: hidden;

  position: relative;

  background: url("../img/home/we-design.png")
    center/cover no-repeat;
}

/* DARK SOFT OVERLAY */
.fabric-inner::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

/* TEXT BLOCK */
.fabric-text {
  position: relative;
  z-index: 2;

  max-width: 560px;
  padding: 40px;
  color: #fff;
}

/* HEADING */
.fabric-text h2 {
  color: var(--secondary);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* TEXT */
.fabric-text p {
  color: var(--white);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
  opacity: 0.9;
}

/* BUTTON */
.fabric-text .btn {
  padding: 10px 20px;
}

/* =========================
   SUBTLE HOVER EFFECT
========================= */

.fabric-inner:hover {
  transform: scale(1.01);
  transition: 0.4s ease;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .fabric-text h2 {
    font-size: 26px;
  }

  .fabric-text {
    padding: 30px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .fabric-inner {
    height: auto;
    padding: 30px 0;
  }

  .fabric-text {
    padding: 20px;
  }

  .fabric-text h2 {
    font-size: 20px;
  }

  .fabric-text p {
    font-size: 13px;
  }

  .fabric-text .btn {
    width: 100%;
  }
}

/* =========================
   WHY CLEAN SECTION
========================= */

.why-clean {
  background: var(--white);
}

/* GRID */
.why-clean-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

/* =========================
   IMAGE
========================= */

.why-clean-media {
  padding: 4px;
  border-radius: var(--radius-lg);
  background: var(--primary);
}

.why-clean-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* =========================
   CONTENT
========================= */

.why-clean-tag {
  font-size: var(--fs-sm);
  color: var(--accent);
}

.why-clean-content h2 {
  margin: 10px 0 20px;
}

/* ITEMS */
.why-item {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
}

/* NUMBER */
.why-item span {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  min-width: 40px;
}

/* TEXT */
.why-item p {
  color: var(--gray-700);
  line-height: 1.6;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .why-clean-wrapper {
    grid-template-columns: 1fr;
  }

  .why-clean-media img {
    height: 300px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .why-clean-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .why-clean-media {
    padding: 0 10px;
  }

  .why-clean-content {
    margin: 0 10px;
    padding: 15px;
    background: var(--gray-100);
    border-radius: 16px;
  }

  .why-clean-content h2 {
    font-size: 20px;
  }

  .why-item p {
    font-size: 13px;
  }
}

/* =========================
   PROCESS STORY SECTION
========================= */

.process-story {
  background: var(--gray-100);
}

/* ROW */
.process-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}

/* REVERSE */
.process-row.reverse {
  grid-template-columns: 1fr 120px;
}

.process-row.reverse .process-text {
  order: 1;
}

.process-row.reverse .process-img {
  order: 2;
}

/* =========================
   IMAGE
========================= */

.process-img {
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.process-img img {
  width: 120px;
}

/* =========================
   TEXT
========================= */

.process-text h4 {
  margin-bottom: 10px;
}

.process-text p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* =========================
   HOVER EFFECT
========================= */

.process-row:hover .process-img {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* =========================
   ICON VISIBILITY CONTROL
========================= */

/* Hide inline icon on desktop */
.process-head img {
  display: none;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .process-row,
  .process-row.reverse {
    grid-template-columns: 80px 1fr;
  }

  .process-img {
    width: 80px;
    height: 80px;
  }

  .process-img img {
    width: 40px;
  }
}

/* =========================
   MOBILE (APP STYLE)
========================= */

@media (max-width: 768px) {
  .process-row,
  .process-row.reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Hide side icon */
  .process-img {
    display: none;
  }

  /* Show inline icon */
  .process-head img {
    display: block;
  }

  /* heading + icon */
  .process-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .process-head img {
    width: 28px;
    height: 28px;
  }

  /* text card */
  .process-text {
    background: var(--white);
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: left;
  }

  .process-text h4 {
    margin: 0;
    font-size: 16px;
  }

  .process-text p {
    font-size: 13px;
  }
}

/* =========================
   TESTIMONIAL MODERN SLIDER
========================= */

.testimonial-modern {
  background: var(--white);
}

/* =========================
   WRAPPER
========================= */

.testimonial-slider-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

/* =========================
   TRACK
========================= */

.testimonial-slider-inner {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

/* =========================
   CARD (3 PER ROW DESKTOP)
========================= */

.testimonial-card {
  flex: 0 0 calc((100% - 60px) / 3);
  padding: 35px;
  border-radius: 16px;

  background: var(--gray-100);
  border: 1px solid var(--gray-200);

  text-align: center;
  transition: all 0.3s ease;
}

/* hover */
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* =========================
   TEXT
========================= */

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--gray-800);
}

/* =========================
   META
========================= */

.meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.meta img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.meta h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.meta span {
  font-size: 12px;
  color: var(--gray-500);
}

/* =========================
   CONTROLS
========================= */

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.testimonial-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* hover */
.testimonial-controls button:hover {
  color: #fff;
  background: var(--primary);
}

/* =========================
   TABLET (2 CARDS)
========================= */

@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

/* =========================
   MOBILE (1 CARD)
========================= */

@media (max-width: 768px) {
  .testimonial-slider-wrap {
    padding: 0 10px;
  }

  .testimonial-slider-inner {
    gap: 15px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    padding: 25px;
  }

  .testimonial-card p {
    font-size: 14px;
  }

  .meta img {
    width: 45px;
    height: 45px;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
  .testimonial-card {
    padding: 20px;
  }

  .testimonial-card p {
    font-size: 13px;
  }
}
