/* ============================================================
   ABC CLEANING SERVICE — Redesigned UI/UX
   Inspired by CleanSweep & WashOut reference designs
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');


:root {
  --primary: #1a56db;
  --primary-dark: #1240a8;
  --primary-light: #3b82f6;
  --accent: #fbbf24;
  --accent-dark: #d97706;
  --secondary: #06b6d4;
  --dark: #0d1e45;
  --dark-alt: #1e3a6e;
  --white: #ffffff;
  --off-white: #f4f8ff;
  --light: #e8f0fe;
  --light-2: #f0f7ff;
  --border: #dbeafe;
  --text: #1e293b;
  --muted: #64748b;
  --shadow-sm: 0 2px 12px rgba(26, 86, 219, 0.08);
  --shadow-md: 0 8px 32px rgba(26, 86, 219, 0.14);
  --shadow-lg: 0 20px 60px rgba(26, 86, 219, 0.18);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.35s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* ── Page Loader ── */
#pageLoader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #13337d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#pageLoader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  color: #fff;
}

.loader-icon {
  font-size: 3.5rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
  animation: loaderPulse 1.4s ease-in-out infinite;
}

.loader-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.loader-brand span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.loader-spinner {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 1.5rem;
}

.loader-spinner div {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  animation: loaderDot 1.2s ease-in-out infinite;
}

.loader-spinner div:nth-child(2) {
  animation-delay: 0.2s;
}

.loader-spinner div:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes loaderPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.12);
    opacity: 0.75;
  }
}

@keyframes loaderDot {

  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.35;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

body {
  /* font-family: 'Poppins', sans-serif; */
  font-family: "SN Pro", sans-serif;
  font-optical-sizing: auto;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

p {
  line-height: 1.4;
  color: #5f5f5f;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f0fe00;
  color: var(--primary);
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: none;
}

.section-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff0101);
  border-radius: 2px;
  margin: 14px auto 0;
}

.section-divider.left {
  margin-left: 0;
}

section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ── Gradient Text ── */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   WAVE DIVIDERS
   ============================================================ */
.wave-top,
.wave-bottom {
  display: block;
  line-height: 0;
}

.wave-top svg,
.wave-bottom svg {
  display: block;
  width: 100%;
}

/* ============================================================
   BACKGROUND PATTERNS & DECORATIONS
   ============================================================ */
.bg-dots {
  background-image: radial-gradient(circle, rgba(26, 86, 219, 0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

.bg-light {
  background: var(--off-white);
}

.bg-primary {
  background: var(--primary);
}

.bg-dark {
  background: var(--dark);
}

/* Floating deco shapes */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  pointer-events: none;
}

.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 3px solid var(--primary);
  opacity: 0.1;
  pointer-events: none;
}

/* ============================================================
   WHY-CHOOSE BUBBLES
   ============================================================ */
#why-choose {
  position: relative;
  overflow: hidden;
}

.why-bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: whyBubbleFloat linear infinite;
}

.why-bubble-1 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 35% 35%, rgba(26, 86, 219, 0.05), rgba(26, 86, 219, 0.01));
  border: 1px solid rgba(26, 86, 219, 0.06);
  left: 5%;
  bottom: -90px;
  animation-duration: 7s;
  animation-delay: 0s;
}

.why-bubble-2 {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at 35% 35%, rgba(26, 86, 219, 0.04), rgba(26, 86, 219, 0.01));
  border: 1px solid rgba(26, 86, 219, 0.05);
  left: 20%;
  bottom: -60px;
  animation-duration: 9s;
  animation-delay: 1.5s;
}

.why-bubble-3 {
  width: 110px;
  height: 110px;
  background: radial-gradient(circle at 35% 35%, rgba(26, 86, 219, 0.04), rgba(26, 86, 219, 0.01));
  border: 1px solid rgba(26, 86, 219, 0.05);
  left: 50%;
  bottom: -120px;
  animation-duration: 11s;
  animation-delay: 0.8s;
}

.why-bubble-4 {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at 35% 35%, rgba(26, 86, 219, 0.05), rgba(26, 86, 219, 0.01));
  border: 1px solid rgba(26, 86, 219, 0.06);
  left: 72%;
  bottom: -70px;
  animation-duration: 8s;
  animation-delay: 2.5s;
}

.why-bubble-5 {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle at 35% 35%, rgba(26, 86, 219, 0.05), rgba(26, 86, 219, 0.01));
  border: 1px solid rgba(26, 86, 219, 0.06);
  left: 88%;
  bottom: -50px;
  animation-duration: 6s;
  animation-delay: 1s;
}

@keyframes whyBubbleFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  80% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-520px) scale(0.75);
    opacity: 0;
  }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: white;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(26, 86, 219, 0.08);
  padding: 0;
  z-index: 1050;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

#mainNav.scrolled {
  box-shadow: none;
  background-color: white;
  border-bottom: 1px solid #00000008;
}

#mainNav .navbar-brand {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  padding: 16px 0;
  letter-spacing: -0.5px;
}

#mainNav .navbar-brand span {
  /* color: var(--accent);
   */
  color: #ff7800;
}

#mainNav .navbar-brand i {
  font-size: 1.4rem;
}

#mainNav .nav-link {
  font-weight: 600;
  font-size: 1rem;
  color: #466cff;
  padding: 28px 16px !important;
  position: relative;
  transition: color var(--t);
  letter-spacing: 0.2px;
  font-family: "SN Pro", sans-serif;
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: #060606 !important;
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: #fff;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 26px !important;
  margin-left: 10px;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  transition: all var(--t) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: #fff !important;
  color: var(--dark) !important;
  transform: translateY(-2px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 36px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 28px rgba(26, 86, 219, 0.35);
  transition: all var(--t) var(--ease);
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26, 86, 219, 0.45);
  color: var(--white);
}

.btn-accent-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 36px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 28px rgba(251, 191, 36, 0.3);
  transition: all var(--t) var(--ease);
  cursor: pointer;
}

.btn-accent-custom:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.45);
  color: var(--dark);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 34px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  transition: all var(--t) var(--ease);
  cursor: pointer;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-white-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 36px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transition: all var(--t) var(--ease);
  cursor: pointer;
}

.btn-white-custom:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 36px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: all var(--t) var(--ease);
  cursor: pointer;
}

.btn-whatsapp-custom:hover {
  background: #128c7e;
  transform: translateY(-3px);
  color: var(--white);
}

/* Legacy button aliases — same styles as new system */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 36px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 28px rgba(26, 86, 219, 0.35);
  transition: all var(--t) var(--ease);
  cursor: pointer;
}

.btn-hero-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26, 86, 219, 0.45);
  color: var(--white);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 36px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 28px rgba(26, 86, 219, 0.35);
  transition: all var(--t) var(--ease);
  cursor: pointer;
}

.btn-hero-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 36px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: all var(--t) var(--ease);
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-3px);
  color: var(--white);
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0050ff;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 36px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
  transition: all var(--t) var(--ease);
  cursor: pointer;
  border: 4px solid #ffb800;
}

.btn-cta-white:hover {
  background: #3a45f9;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(251, 191, 36, 0.35);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #01af01;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 34px;
  border-radius: 50px;
  border: 4px solid rgba(255, 255, 255, 0.6);
  transition: all var(--t) var(--ease);
  cursor: pointer;
}

.btn-cta-outline:hover {
  background: #048d04;
  border-color: var(--white);
  transform: translateY(-3px);
  color: var(--white);
}

/* Trust badge (hero checklist items) */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
#hero .deco-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.12) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  animation: heroDeco 12s ease-in-out infinite;
}

#hero .deco-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: heroDeco 10s ease-in-out infinite reverse;
}

@keyframes heroDeco {

  0%,
  100% {
    transform: scale(1) translate(0, 0);
  }

  50% {
    transform: scale(1.1) translate(20px, -30px);
  }
}

/* Ring decorations */
#hero .ring-1 {
  width: 120px;
  height: 120px;
  border: 3px dashed rgba(26, 86, 219, 0.15);
  top: 20%;
  right: 15%;
  animation: spinRing 20s linear infinite;
}

#hero .ring-2 {
  width: 70px;
  height: 70px;
  border: 3px dashed rgba(251, 191, 36, 0.25);
  bottom: 20%;
  left: 10%;
  animation: spinRing 14s linear infinite reverse;
}

@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .accent-word {
  position: relative;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

.hero-title .accent-word::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.4;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  margin: 22px 0 10px;
  line-height: 1.8;
}

.hero-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 32px;
}

.hero-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

.hero-check-item i {
  color: var(--primary);
  font-size: 0.95rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-contact-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-contact-item small {
  font-size: 0.72rem;
  color: var(--muted);
  display: block;
}

.hero-contact-item strong {
  font-size: 0.95rem;
  color: var(--dark);
}

.hero-visual {
  position: relative;
}

.hero-card-main {
  border-radius: 32px;
  background: url('../images/banner-img1.png') center center / cover no-repeat;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-card-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(26, 86, 219, 0.72), rgba(15, 63, 168, 0.65) 40%, rgba(8, 145, 178, 0.65) 100%);
  border-radius: inherit;
}

.hero-card-main i,
.hero-card-main h3,
.hero-card-main p {
  position: relative;
  z-index: 1;
}

.hero-card-main i {
  font-size: 5.5rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.hero-card-main h3 {
  font-size: 1.6rem;
  font-weight: 800;
}

.hero-card-main p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  font-size: 0.95rem;
}

/* Floating stat badges */
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatBadge 4s ease-in-out infinite;
  z-index: 2;
}

.hero-badge-1 {
  bottom: 50px;
  left: -24px;
  animation-delay: 0s;
}

.hero-badge-2 {
  top: 60px;
  right: -20px;
  animation-delay: 2s;
}

.hero-badge .badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-badge .badge-icon.yellow {
  background: linear-gradient(135deg, #1eb611, #5d4f3e);
}

.hero-badge .badge-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.hero-badge .badge-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Dotted pattern on visual */
.hero-visual::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(circle, rgba(26, 86, 219, 0.2) 2px, transparent 2px);
  background-size: 16px 16px;
  border-radius: 20px;
  z-index: 0;
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  /* min-height: 100vh; */
}

.hero-carousel .carousel-inner {
  min-height: 100vh;
}

.hero-carousel .carousel-item {
  display: flex !important;
  align-items: center;
  padding-top: 35px;
  padding-bottom: 35px;
}

/* Image banner slides */
.banner-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 30, 69, 0.85) 0%, rgba(13, 30, 69, 0.6) 55%, rgba(13, 30, 69, 0.25) 100%);
  z-index: 0;
}

.banner-slide-2 .banner-overlay {
  background: linear-gradient(120deg, rgba(7, 50, 75, 0.88) 0%, rgba(8, 100, 140, 0.65) 55%, rgba(13, 30, 69, 0.25) 100%);
}

.banner-slide-3 .banner-overlay {
  background: linear-gradient(120deg, rgba(75, 25, 0, 0.88) 0%, rgba(140, 60, 0, 0.65) 55%, rgba(13, 30, 69, 0.25) 100%);
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner-slide .hero-title {
  color: #ffffff;
}

.banner-slide .hero-check-item {
  color: rgba(255, 255, 255, 0.92);
}

.banner-slide .hero-check-item i {
  color: var(--accent);
}

/* Per-slide background tint overlays */
.hero-carousel .carousel-item.slide-teal {
  background: linear-gradient(150deg, #e0f7fa 0%, #cce8ff 50%, #f0fffe 100%);
}

.hero-carousel .carousel-item.slide-accent {
  background: linear-gradient(150deg, #fffbeb 0%, #fef3c7 50%, #f0f7ff 100%);
}

/* Slide-in animations for carousel active slide */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(48px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.carousel-item.active .slide-in-up {
  animation: slideInUp 0.65s var(--ease) both;
}

.carousel-item.active .slide-in-right {
  animation: slideInRight 0.75s var(--ease) both;
}

.carousel-item.active .delay-1 {
  animation-delay: 0.1s;
}

.carousel-item.active .delay-2 {
  animation-delay: 0.22s;
}

.carousel-item.active .delay-3 {
  animation-delay: 0.34s;
}

.carousel-item.active .delay-4 {
  animation-delay: 0.46s;
}

.carousel-item.active .delay-5 {
  animation-delay: 0.58s;
}

/* Arrow buttons */
.hero-arrow {
  width: 52px;
  height: 52px;
  background: var(--white) !important;
  border-radius: 50% !important;
  border: none;
  box-shadow: 0 4px 20px rgba(26, 86, 219, 0.18);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  transition: all var(--t) var(--ease);
}

.hero-arrow-prev {
  left: 24px;
}

.hero-arrow-next {
  right: 24px;
}

.hero-arrow i {
  font-size: 1.2rem;
  color: var(--primary);
  transition: color var(--t);
}

.hero-arrow:hover {
  background: var(--primary) !important;
  box-shadow: 0 8px 28px rgba(26, 86, 219, 0.35);
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow:hover i {
  color: var(--white);
}

.hero-arrow .carousel-control-prev-icon,
.hero-arrow .carousel-control-next-icon {
  display: none;
}

/* Dot indicators */
.hero-dots {
  bottom: 28px !important;
  gap: 8px;
  margin: 0;
}

.hero-dots [data-bs-slide-to] {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: rgba(26, 86, 219, 0.25) !important;
  border: 2px solid var(--primary) !important;
  opacity: 1 !important;
  transition: all 0.35s var(--ease);
}

.hero-dots [data-bs-slide-to].active {
  background: var(--primary) !important;
  width: 28px !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 8px rgba(26, 86, 219, 0.4);
}

/* Carousel fade override — ensure full-height */
.carousel-fade .carousel-item {
  transition-duration: 0.7s;
}

/* Slide-in animations triggered via JS on carousel transition */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#bannerCarousel .carousel-item.slide-in-left {
  animation: slideInFromLeft 0.55s ease forwards;
}

#bannerCarousel .carousel-item.slide-in-right {
  animation: slideInFromRight 0.55s ease forwards;
}

/* Round carousel indicators with animated active state */
#bannerCarousel .carousel-indicators {
  bottom: 16px;
  gap: 8px;
  margin: 0;
}

#bannerCarousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: transparent;
  opacity: 0.6;
  padding: 0;
  flex-shrink: 0;
  transition: background-color 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
}

#bannerCarousel .carousel-indicators button.active {
  background-color: #fff;
  opacity: 1;
  transform: scale(1.4);
}

@media (max-width: 767px) {
  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-arrow i {
    font-size: 1rem;
  }

  .hero-arrow-prev {
    left: 10px;
  }

  .hero-arrow-next {
    right: 10px;
  }

  .hero-dots {
    bottom: 16px !important;
  }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
#stats {
  background-image: url('../images/about-conter-bg.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.13) 0%, rgba(15, 63, 168, 0.37) 50%, rgba(13, 30, 69, 0.56) 100%);
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.15);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(26, 86, 219, 0.5);
}

.stat-plus {
  font-size: 2rem;
  color: var(--accent);
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin-top: 8px;
}

.stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.4rem;
  color: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why-choose {
  background: #f9f9f9;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: all var(--t) var(--ease);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  /* background: linear-gradient(90deg, var(--primary), var(--accent)); */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  /* border-color: var(--border); */
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 76px;
  height: 76px;
  background: #eee;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: all var(--t) var(--ease);
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  border: 2px dashed #006dff;
  transition: border-color var(--t);
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--primary);
  transition: all var(--t) var(--ease);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.feature-card:hover .feature-icon i {
  color: var(--white);
}

.feature-card:hover .feature-icon::after {
  border-color: var(--primary);
}

.feature-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all var(--t) var(--ease);
  height: 100%;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-card-img {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.8rem;
  background: var(--light);
  transition: all var(--t) var(--ease);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-card-img {
  background: transparent;
}

.service-card-img i {
  color: var(--primary);
  transition: color var(--t);
}

.service-card:hover .service-card-img i {
  color: rgba(255, 255, 255, 0.7);
}

.service-card-body {
  padding: 24px 26px;
  position: relative;
  z-index: 1;
}

.service-card-body h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  transition: color var(--t);
}

.service-card:hover .service-card-body h5 {
  color: white;
}

.service-card-body p {
  font-size: 1rem;
  margin-bottom: 18px;
  transition: color var(--t);
}

.service-card:hover .service-card-body p {
  color: rgba(255, 255, 255, 0.8);
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 50px;
  padding: 8px 20px;
  transition: all var(--t) var(--ease);
  position: relative;
  z-index: 1;
}

.service-card:hover .btn-service {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
}

.btn-service:hover {
  background: var(--primary);
  color: white;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works {
  background: #fbfbfb;
  position: relative;
  overflow: hidden;
}

.hiw-bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: whyBubbleFloat linear infinite;
}

.hiw-bubble-1 {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 35% 35%, rgba(26, 86, 219, 0.05), rgba(26, 86, 219, 0.01));
  border: 1px solid rgba(26, 86, 219, 0.06);
  left: 10%;
  bottom: -100px;
  animation-duration: 8s;
  animation-delay: 0.3s;
}

.hiw-bubble-2 {
  width: 45px;
  height: 45px;
  background: radial-gradient(circle at 35% 35%, rgba(26, 86, 219, 0.05), rgba(26, 86, 219, 0.01));
  border: 1px solid rgba(26, 86, 219, 0.06);
  left: 28%;
  bottom: -55px;
  animation-duration: 7s;
  animation-delay: 2s;
}

.hiw-bubble-3 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 35% 35%, rgba(26, 86, 219, 0.04), rgba(26, 86, 219, 0.01));
  border: 1px solid rgba(26, 86, 219, 0.04);
  left: 48%;
  bottom: -130px;
  animation-duration: 12s;
  animation-delay: 0.5s;
}

.hiw-bubble-4 {
  width: 65px;
  height: 65px;
  background: radial-gradient(circle at 35% 35%, rgba(26, 86, 219, 0.05), rgba(26, 86, 219, 0.01));
  border: 1px solid rgba(26, 86, 219, 0.05);
  left: 68%;
  bottom: -75px;
  animation-duration: 9.5s;
  animation-delay: 1.2s;
}

.hiw-bubble-5 {
  width: 55px;
  height: 55px;
  background: radial-gradient(circle at 35% 35%, rgba(26, 86, 219, 0.05), rgba(26, 86, 219, 0.01));
  border: 1px solid rgba(26, 86, 219, 0.06);
  left: 85%;
  bottom: -65px;
  animation-duration: 7.5s;
  animation-delay: 3s;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg,
      var(--primary) 0px, var(--primary) 10px,
      transparent 10px, transparent 20px);
  z-index: 0;
  opacity: 0.6;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 76px;
  height: 76px;
  background: var(--white);
  border: 2.5px solid #006dff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: var(--primary);
  transition: all var(--t) var(--ease);
  position: relative;
  box-shadow: none;
}

.step-icon .step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #174dc7;
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.step-item:hover .step-icon {
  background: white;
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
  border: 3px solid #8a8cff;
}

.step-item h6 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 1rem;
}

/* ============================================================
   BEFORE & AFTER
   ============================================================ */
#before-after {
  background: var(--white);
}

.ba-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all var(--t) var(--ease);
}

.ba-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.ba-image-box {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
}

.ba-image-box.before {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #991b1b;
}

.ba-image-box.after {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
}

.ba-image-box span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.8;
}

.ba-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
  border: 2px solid var(--border);
}

.ba-card-body {
  padding: 20px 24px;
}

.ba-card-body h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.ba-card-body p {
  font-size: 1rem;
  margin: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  background: #f6f6f6;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid #dfdfdf;
  height: 100%;
  position: relative;
  transition: all var(--t) var(--ease);
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 22px;
  font-size: 7rem;
  line-height: 1;
  color: var(--light);
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 25%;
  background: linear-gradient(135deg, var(--primary), #185cd3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  margin-right: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(170, 180, 201, 0.96);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.924rem;
  font-style: italic;
  margin: 14px 0;
  color: var(--muted);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
#industries {
  background: var(--white);
}

.industry-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all var(--t) var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.industry-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
}

.industry-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--dark-alt));
}

.industry-item:hover::before {
  transform: scaleX(1);
}

.industry-item i {
  font-size: 2.2rem;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
  transition: all var(--t);
}

.industry-item:hover i {
  color: var(--accent);
}

.industry-item h6 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  transition: color var(--t);
}

.industry-item:hover h6 {
  color: white;
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  background: #fbfbfb;
}

.faq-accordion .accordion-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}

.faq-accordion .accordion-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-sm) !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #1559f0;
  background: #fff;
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a56db'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
  font-size: 1rem;
  color: #4e4f50;
  padding: 16px 26px 22px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
#cta-section {
  background: linear-gradient(rgba(15, 63, 168, 0.82), rgba(10, 30, 90, 0.88)), url('../images/cont-banner.png') center/cover no-repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#cta-section::before {
  /* content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); */
}

#cta-section .deco-ring-cta-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px dashed rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -100px;
  left: -100px;
}

#cta-section .deco-ring-cta-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -80px;
  right: -80px;
}

#cta-section h2 {
  color: white;
  font-size: 2.2rem;
  font-weight: 800;
}

#cta-section p {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0f3fa8 60%, var(--dark) 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.page-hero-ring-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 2px dashed rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  top: -150px;
  right: -100px;
  animation: spinRing 30s linear infinite;
}

.page-hero-ring-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(251, 191, 36, 0.12);
  border-radius: 50%;
  bottom: -60px;
  left: 5%;
  animation: spinRing 20s linear infinite reverse;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 14px;
  position: relative;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb-hero {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  font-size: 1.1rem;
  position: relative;
}

.breadcrumb-hero a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--t);
}

.breadcrumb-hero a:hover {
  color: var(--accent);
}

.breadcrumb-hero span {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-hero .active {
  color: var(--accent);
  font-weight: 600;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-flip-wrap {
  perspective: 1200px;
  min-height: 440px;
}

.about-flip-inner {
  position: relative;
  width: 100%;
  height: 440px;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-flip-wrap:hover .about-flip-inner {
  transform: rotateY(180deg);
}

.about-flip-front,
.about-flip-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.about-intro-img {
  background: linear-gradient(145deg, var(--primary), #0f3fa8 40%, var(--dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 3%;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about-flip-back {
  background: linear-gradient(145deg, var(--dark), #0f3fa8 60%, var(--primary));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transform: rotateY(180deg);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
}

.about-flip-back img {
  width: 200px;
  max-width: 70%;
  filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.about-flip-back p {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
}

.about-intro-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.15), transparent 60%);
}

.about-intro-s1 {
  border-radius: 10px;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  transition: all var(--t) var(--ease);
  display: flex;
  align-items: center;
  gap: 20px;
}

.value-card i {
  flex-shrink: 0;
}

.value-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.value-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--t) var(--ease);
  border: 1.5px solid var(--border);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.team-avatar {
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
}

.team-card-body {
  padding: 22px;
}

.team-card-body h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

/* ============================================================
   SERVICES PAGE — Detail Cards
   ============================================================ */
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  border: 1.5px solid var(--border);
  transition: all var(--t) var(--ease);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.service-detail-header {
  background: linear-gradient(135deg, var(--primary), var(--dark-alt));
  padding: 40px;
  color: white;
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.service-detail-header::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.service-detail-icon {
  width: 84px;
  height: 84px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.service-detail-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.service-detail-header p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  margin: 0;
}

.service-detail-body {
  padding: 36px;
}

.service-includes li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}

.service-includes li:last-child {
  border: none;
}

.service-includes li i {
  color: var(--primary);
  flex-shrink: 0;
}

.pricing-badge {
  background: linear-gradient(135deg, var(--light), #e0fff4);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.pricing-badge .price-tag {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
}

.btn-book-service {
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 50px;
  border: none;
  width: 100%;
  margin-top: 14px;
  transition: all var(--t) var(--ease);
  font-size: 0.92rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}

.btn-book-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26, 86, 219, 0.4);
  color: white;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 10px 26px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--t) var(--ease);
  box-shadow: var(--shadow-sm);
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent;
  color: white;
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.3);
  transform: translateY(-2px);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  margin-bottom: 24px;
  border: 1.5px solid var(--border);
}

.gallery-item-inner {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: all var(--t) var(--ease);
  position: relative;
}

.gallery-item-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}

.gallery-item:hover .gallery-item-inner::after {
  opacity: 0.82;
}

.gallery-item:hover .gallery-item-inner {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.gallery-overlay span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13, 30, 69, 0.85), transparent);
  padding: 24px 18px 14px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--t) var(--ease);
  z-index: 3;
}

.gallery-item:hover .gallery-label {
  transform: translateY(0);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  height: 100%;
  transition: all var(--t) var(--ease);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.contact-icon {
  width: 66px;
  height: 66px;
  background: var(--light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 16px;
  transition: all var(--t);
}

.contact-card:hover .contact-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}

.form-control-custom {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  font-size: 0.92rem;
  transition: all var(--t) var(--ease);
  background: #fff;
  color: var(--text);
  width: 100%;
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: none;
  background: white;
}

.form-label-custom {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
  display: block;
}

.btn-submit {
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  width: 100%;
  transition: all var(--t) var(--ease);
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(26, 86, 219, 0.4);
  /* background: linear-gradient(135deg, var(--accent), var(--accent-dark)); */
  color: #fff;
}

.hours-table td {
  padding: 9px 14px;
  font-size: 0.88rem;
}

.hours-table tr:nth-child(even) td {
  background: var(--off-white);
  border-radius: 4px;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.booking-modal .modal-content {
  border-radius: var(--radius);
  border: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.booking-modal .modal-header {
  background: linear-gradient(135deg, var(--primary), var(--dark-alt));
  color: white;
  padding: 22px 30px;
}

.booking-modal .modal-header .btn-close {
  filter: brightness(0) invert(1);
}

.booking-modal .modal-body {
  padding: 30px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #fff, #0050ff);
}

#footer .footer-brand {
  font-size: 1.7rem;
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  display: block;
}

#footer .footer-brand span {
  color: var(--accent);
}

#footer h5 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}

#footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
}

#footer ul {
  list-style: none;
  padding: 0;
}

#footer ul li {
  margin-bottom: 11px;
}

#footer ul li a {
  color: rgb(255, 255, 255);
  font-size: 1rem;
  transition: all var(--t) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

#footer ul li a:hover {
  color: #fff;
  padding-left: 5px;
  font-weight: bold;
}

#footer ul li a i {
  font-size: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 15px;
  font-size: 0.88rem;
}

.footer-contact-item a {
  font-size: 1rem;
  color: white !important;
}

.footer-contact-item span {
  font-size: 1rem;
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  transition: all var(--t) var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  background: #1555e1;
  color: white;
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.35);
}

.small,
small {
  font-size: 1rem;
  color: white !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
  margin-top: 56px;
  font-size: 0.82rem;
  color: rgb(255, 255, 255);
}

.footer-map iframe {
  border-radius: var(--radius-sm);
  border: 0;
  width: 100%;
  height: 180px;
  margin-top: 16px;
  filter: grayscale(20%) contrast(1.05);
}


.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.float-wa-btn {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #14ff00, #020202);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.7rem;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.62);
  transition: all var(--t) var(--ease);
  cursor: pointer;
  animation: waPulse 2.5s ease-in-out infinite;
  text-decoration: none;
}

.float-wa-btn:hover {
  transform: scale(1.12) translateY(-3px);
  color: white;
}

.service-card-img img {
  height: 190px;
  width: 100%;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5), 0 0 0 14px rgba(37, 211, 102, 0.1);
  }
}

.float-call-btn {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 18px rgba(26, 86, 219, 0.45);
  transition: all var(--t) var(--ease);
  cursor: pointer;
  text-decoration: none;
}

.float-call-btn:hover {
  transform: scale(1.1);
  color: white;
}

/* Back to top */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: #0050ff;
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t) var(--ease);
  z-index: 9998;
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}

.fade-in.visible {
  opacity: 1;
}

.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

[data-delay="100"] {
  transition-delay: 0.1s !important;
}

[data-delay="200"] {
  transition-delay: 0.2s !important;
}

[data-delay="300"] {
  transition-delay: 0.3s !important;
}

[data-delay="400"] {
  transition-delay: 0.4s !important;
}

[data-delay="500"] {
  transition-delay: 0.5s !important;
}

[data-delay="600"] {
  transition-delay: 0.6s !important;
}

[data-delay="700"] {
  transition-delay: 0.7s !important;
}

[data-delay="800"] {
  transition-delay: 0.8s !important;
}

/* ============================================================
   ACCENT BADGE (service nav bar)
   ============================================================ */
.services-nav-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  position: sticky;
  top: 80px;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(26, 86, 219, 0.06);
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-primary {
  color: var(--primary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.bg-accent {
  background: var(--accent) !important;
}

.rounded-custom {
  border-radius: var(--radius) !important;
}

/* ============================================================
   WAVE SVG HELPER
   ============================================================ */
.section-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}

.section-wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}


.nav-link.nav-cta {
  color: #1a56db !important;
}

#footer p {
  color: white;
}


.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: #333;
}

.bi-cart {
  font-size: 20px;
  margin-right: 6px;
}

.cart-badge {
  position: absolute;
  top: 23px;
  right: 1px;
  background: #ff5050;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 0px 4px;
  border-radius: 50%;
  min-width: 18px;
  text-align: center;
}


#mainNav .navselected::after {
  /* transform: scaleX(1); */
}

.nav-link.navselected {
  color: #201f1f !important;
}

/* Book Now blink */
@keyframes smooth-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

.nav-link.book-now {
  animation: smooth-blink 1.4s ease-in-out infinite;
  color: red !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .process-steps {
    flex-wrap: wrap;
  }

  .process-steps::before {
    display: none;
  }

  .step-item {
    flex: 0 0 45%;
  }

  #mainNav .nav-link {
    padding: 12px 16px !important;
    border-bottom: 1px solid #80808012;
    width: 100%;
  }

  #mainNav .nav-link::after {
    display: none;
  }

  .hero-badge {
    display: none;
  }

  .hero-visual::before {
    display: none;
  }
}

@media (max-width: 767px) {
  #mainNav .navbar-brand {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.5px;
  }

  section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .step-item {
    flex: 0 0 100%;
  }

  .ba-images {
    grid-template-columns: 1fr;
  }

  .ba-image-box {
    height: 120px;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .service-detail-header {
    flex-direction: column;
    text-align: center;
  }

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

  .hero-card-main {
    min-height: 320px;
  }

  .cart-badge {
    top: 16px;
    right: 18px;
  }

  #cta-section h2 {
    font-size: 1.5rem;
  }

  .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
  }
}



.brand-logo {
  width: 143px;
}

.navbar-toggler {
  color: rgb(1, 53, 201);
  background-color: #e5e8f2;
  border-radius: 12px;
  padding: 7px;
}

.navbar-toggler.border-0 i {
  color: #0038d4 !important;
}

#mainNav .nav-link:hover {
  color: black !important;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
  padding-bottom: 10px;
}

.footer-brand img {
  width: 157px;
  max-width: 70%;
  filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.brand-p-ms-loader {
  width: 191px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.btn-book-service.quick_bk_sub_confirmbtn {
  width: auto;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar-collapse.show {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
  }

  .navbar-collapse.collapsing {
    max-height: 0 !important;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

/* ── Cart Toast ── */
.cart-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  min-width: 280px;
  max-width: 340px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cart-toast-icon {
  font-size: 1.6rem;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
}

.cart-toast-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.cart-toast-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.cart-toast-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-toast-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--t) var(--ease);
}

.cart-toast-link:hover {
  color: var(--primary-dark);
}

.btn-service {
  display: none;
}

.fade-right {
  transform: translateX(0px);
}

@media (max-width: 480px) {
  .cart-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    min-width: unset;
    max-width: unset;
  }
}



@media (max-width: 780px) {
  #footer {
    padding: 13% 3%;
  }

  .footer-bottom {
    margin-top: 22px;
  }

  .contact-social {
    margin-bottom: 24px;
  }

 
}