/* ==========================================
   DIGITAL SRIJA - UPLIV INSPIRED DESIGN SYSTEM
   Inspiration: https://www.theupliv.com/
   Theme: Deep Forest Green (#14362a), Mint Accent (#c5ebd9, #00e676), Glassmorphism
   Fonts: Heading - 'Aclonica', cursive, sans-serif
          Body - 'Open Sans', sans-serif
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Aclonica&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --primary-deep: #059512;
  --primary-dark: #03680c;
  --primary-mid: #058010;
  --accent-mint: #d2f8d6;
  --neon-mint: #059512;
  --light-mint-bg: #f2faf3;
  --light-border: rgba(5, 149, 18, 0.15);
  --glass-bg: rgba(5, 149, 18, 0.65);
  --glass-card: rgba(255, 255, 255, 0.85);
  
  --text-dark: #1a1c1c;
  --text-muted: #4e5e52;
  --bg-surface: #f8faf8;
  --bg-white: #ffffff;
  
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px -5px rgba(5, 149, 18, 0.15);
  --shadow-lg: 0 20px 45px -10px rgba(5, 149, 18, 0.22);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.15);

  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 9999px;
  
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Aclonica', cursive, sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-surface);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .brand-font {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--primary-deep);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

/* Top Bar */
.top-bar {
  background-color: #081711;
  color: #ffffff;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-socials a {
  color: #ffffff;
  font-size: 0.9rem;
  transition: var(--transition);
}

.top-socials a:hover {
  color: var(--accent-mint);
}

/* ==========================================
   UPLIV FLOATING GLASS NAVBAR
   (Fixes to top on scroll)
   ========================================== */
.header-navbar {
  position: fixed;
  top: 46px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 16px;
  transition: top 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, box-shadow 0.35s ease;
}

.header-navbar.scrolled {
  top: 22px;
}

.nav-glass-container {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 20px;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 35px rgba(5, 149, 18, 0.12);
  border: 1px solid rgba(5, 149, 18, 0.18);
  max-width: 1140px;
  margin: 0 auto;
  transition: var(--transition);
}

.header-navbar.scrolled .nav-glass-container {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 40px rgba(5, 149, 18, 0.2);
  border-color: rgba(5, 149, 18, 0.25);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a1c1c;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-deep);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-deep);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-mint {
  background: var(--primary-deep);
  color: #ffffff;
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(5, 149, 18, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-mint:hover {
  background: #03680c;
  color: #ffffff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 35px rgba(5, 149, 18, 0.55);
}

.btn-pill-green {
  background: linear-gradient(135deg, var(--primary-deep), #03680c);
  color: #ffffff;
  border-radius: var(--radius-pill);
  padding: 12px 30px;
  font-family: var(--font-heading);
  box-shadow: 0 8px 25px rgba(5, 149, 18, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-pill-green:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 35px rgba(5, 149, 18, 0.55);
  background: linear-gradient(135deg, #03680c, var(--primary-deep));
}

.arrow-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  margin-left: 6px;
  font-size: 0.85rem;
}

/* ==========================================
   SCREENSHOT-INSPIRED HERO SECTION (WHITE GRADIENT WITH GREEN SMUDGES)
   ========================================== */
.hero-upliv-section {
  background: radial-gradient(circle at 15% 20%, rgba(5, 149, 18, 0.18) 0%, rgba(255, 255, 255, 0) 45%),
              radial-gradient(circle at 85% 75%, rgba(5, 149, 18, 0.20) 0%, rgba(255, 255, 255, 0) 50%),
              radial-gradient(circle at 50% 40%, rgba(5, 149, 18, 0.10) 0%, rgba(255, 255, 255, 0) 65%),
              linear-gradient(180deg, #ffffff 0%, #f2faf3 100%);
  color: var(--text-dark);
  padding: 130px 0 70px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-top-hello {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-deep);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-top-hello::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary-deep);
}

.hero-main-name-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  color: #1a1c1c;
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-main-name-title span {
  color: var(--primary-deep);
}

.hero-sub-location {
  font-size: 1.1rem;
  color: #4e5e52;
  margin-bottom: 40px;
  font-weight: 500;
}

/* Top Right Spinning Hire Me Badge */
.hero-spin-badge-wrap {
  position: absolute;
  top: 130px;
  right: 6%;
  z-index: 20;
}

.hero-spin-badge {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(5, 149, 18, 0.22);
  transition: var(--transition);
}

.hero-spin-badge:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 35px rgba(5, 149, 18, 0.35);
}

.hero-spin-text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: spinText 12s linear infinite;
  border-radius: 50%;
  pointer-events: none;
}

@keyframes spinText {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-spin-center-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary-deep);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  box-shadow: 0 4px 16px rgba(5, 149, 18, 0.45);
  z-index: 2;
}

/* Main 3-Column Stage Grid */
.hero-stage-3col-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  align-items: flex-end;
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}

/* Left Quote Block */
.hero-left-quote-box {
  text-align: left;
  padding-bottom: 40px;
}

.hero-quote-icon-large {
  font-size: 3.5rem;
  color: var(--primary-deep);
  line-height: 1;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

.hero-left-quote-txt {
  font-size: 0.98rem;
  color: #1a1c1c;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-rating-reviews-cluster {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.hero-rating-reviews-cluster .avatar-stack-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 0;
}

.hero-reviews-val {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary-deep);
  white-space: nowrap;
}

.hero-reviews-lbl {
  font-size: 0.78rem;
  color: #4e5e52;
  font-weight: 600;
}

/* Center Stage Portrait & Green Organic Backdrop */
.hero-center-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-green-arch-backdrop {
  position: absolute;
  bottom: 0;
  width: 320px;
  height: 340px;
  background: linear-gradient(180deg, #00a846 0%, #005a25 100%);
  border-radius: 160px 160px 0 0;
  z-index: 1;
  box-shadow: 0 10px 40px rgba(0, 230, 118, 0.25);
}

.hero-portrait-cutout {
  position: relative;
  z-index: 10;
  height: 450px;
  width: auto;
  object-fit: contain;
}

/* Floating Service Badges Surrounding Hero Portrait (Mobile View) */
.hero-floating-badge {
  display: none; /* Hidden on Desktop by default */
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(5, 149, 18, 0.28);
  color: #1a1c1c;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(5, 149, 18, 0.18);
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  cursor: pointer;
}

.hero-floating-badge:hover {
  transform: scale(1.08) translateY(-4px) !important;
  box-shadow: 0 16px 32px rgba(5, 149, 18, 0.32);
}

.hero-floating-badge.highlight {
  background: linear-gradient(135deg, #059512 0%, #03680c 100%);
  color: #ffffff;
  border-color: #059512;
  box-shadow: 0 10px 25px rgba(5, 149, 18, 0.35);
}

/* Floating badge keyframe animations */
@keyframes floatBadgeLeft1 {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes floatBadgeRight1 {
  0%, 100% { transform: translateY(0px) rotate(1deg); }
  50% { transform: translateY(-10px) rotate(-1.5deg); }
}

@keyframes floatBadgeLeft2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-7px) rotate(-1deg); }
}

/* Desktop position definitions surrounding center stage */
.badge-pos-1 {
  top: 15%;
  left: -40px;
  animation: floatBadgeLeft1 4.2s ease-in-out infinite;
}

.badge-pos-2 {
  top: 12%;
  right: -35px;
  animation: floatBadgeRight1 4.8s ease-in-out infinite;
}

.badge-pos-3 {
  top: 50%;
  left: -65px;
  animation: floatBadgeLeft2 5.1s ease-in-out infinite;
}

.badge-pos-4 {
  top: 48%;
  right: -55px;
  animation: floatBadgeLeft1 4.5s ease-in-out infinite;
}

.badge-pos-5 {
  top: 78%;
  left: -25px;
  animation: floatBadgeRight1 4.0s ease-in-out infinite;
}

/* Overlapping Centered Capsule CTA Buttons */
.hero-overlapping-cta-box {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.cta-btn-dark-pill {
  background: var(--primary-deep);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  white-space: nowrap;
}

.cta-btn-dark-pill:hover {
  background: #061510;
  transform: translateY(-1px);
}

.cta-btn-white-pill {
  background: #ffffff;
  color: var(--primary-deep);
  padding: 12px 30px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1.5px solid rgba(20, 54, 42, 0.2);
  white-space: nowrap;
}

.cta-btn-white-pill:hover {
  background: var(--light-mint-bg);
  border-color: var(--primary-deep);
}

/* Right Floating Pills & Socials */
.hero-right-pills-box {
  text-align: right;
  padding-bottom: 40px;
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  opacity: 1;
  visibility: visible;
}

.hero-tags-flex {
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-service-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid rgba(5, 149, 18, 0.25);
  color: var(--primary-deep);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(5, 149, 18, 0.12);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.hero-service-pill.highlight {
  background: var(--primary-deep);
  color: #ffffff;
  border-color: var(--primary-deep);
  box-shadow: 0 6px 18px rgba(5, 149, 18, 0.35);
}

.hero-service-pill:hover {
  transform: translateX(-4px);
  background: var(--primary-deep);
  color: #ffffff;
}

.hero-socials-right-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-social-circle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.hero-social-circle-btn:hover {
  background: var(--accent-mint);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .hero-stage-3col-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-left-quote-box, .hero-right-pills-box {
    text-align: center;
    align-items: center;
  }
  .hero-tags-flex {
    align-items: center;
  }
  .hero-spin-badge-wrap {
    display: none;
  }
}


.hero-upliv-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  filter: blur(120px);
  pointer-events: none;
}

.hero-upliv-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-upliv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-upliv-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-mint);
}

.hero-upliv-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-upliv-title span {
  color: var(--accent-mint);
}

.hero-upliv-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 620px;
}

.hero-checklist-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 30px;
}

.hero-check-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.hero-img-container {
  position: relative;
}

.hero-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.glass-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(20, 54, 42, 0.15);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.glass-float-card.top-right {
  top: -20px;
  right: -20px;
}

.glass-float-card.bottom-left {
  bottom: -20px;
  left: -20px;
}

.glass-float-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--light-mint-bg);
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.glass-float-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary-deep);
}

.glass-float-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

/* IMPACT & STATS SECTION */
.impact-section {
  padding: 70px 0;
  background: var(--bg-surface);
  position: relative;
}

.impact-header-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.impact-rating-card {
  background: var(--bg-white);
  border: 1px solid var(--light-border);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: right;
}

.stars-gold {
  color: #fbbc05;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.upliv-impact-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.upliv-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.upliv-impact-item {
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  opacity: 1;
}

.upliv-impact-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1.5px;
  background: rgba(5, 149, 18, 0.2);
}

.upliv-impact-item:hover {
  background: var(--light-mint-bg);
}

.upliv-impact-icon {
  font-size: 2.4rem;
  color: var(--primary-deep) !important;
  margin-bottom: 12px;
  opacity: 1 !important;
  transition: var(--transition);
}

.upliv-impact-item:hover .upliv-impact-icon {
  transform: scale(1.15);
}

.upliv-impact-val {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary-deep) !important;
  margin-bottom: 4px;
  line-height: 1.1;
  opacity: 1 !important;
}

.upliv-impact-lbl {
  font-size: 0.85rem;
  color: #11281c !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 1 !important;
}

/* UPLIV FULL-WIDTH CTA BANNER SECTION */
.upliv-cta-banner-section {
  background: linear-gradient(135deg, #041207 0%, #092c11 100%);
  color: #ffffff;
  padding: 95px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(5, 149, 18, 0.25);
  border-bottom: 1px solid rgba(5, 149, 18, 0.25);
}

.upliv-cta-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(5, 149, 18, 0.35), transparent 70%);
  pointer-events: none;
}

.cta-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
  font-size: 0.8rem;
  color: var(--accent-mint);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-title span {
  color: var(--accent-mint);
  text-shadow: 0 0 25px rgba(5, 149, 18, 0.6);
}

.cta-banner-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 36px auto;
}

.cta-banner-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cta-checklist-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
}

/* SLEEK MINIMALIST GREEN & BLACK CTA BANNER CARD */
.minimal-cta-section {
  padding: 80px 0;
  background: var(--bg-surface);
}

.minimal-white-cta-card {
  background: linear-gradient(135deg, #038a32 0%, #059512 50%, #026322 100%);
  border-radius: 28px;
  padding: 75px 50px;
  box-shadow: 0 25px 60px rgba(5, 149, 18, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.minimal-cta-arc-left {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 35px solid rgba(255, 255, 255, 0.25);
  filter: blur(16px);
  position: absolute;
  left: -80px;
  bottom: -60px;
  pointer-events: none;
}

.minimal-cta-arc-right {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 40px solid rgba(5, 149, 18, 0.4);
  filter: blur(18px);
  position: absolute;
  right: -80px;
  top: -40px;
  pointer-events: none;
}

.minimal-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 22px;
  font-size: 0.8rem;
  color: var(--accent-mint);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.minimal-cta-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.minimal-cta-title span {
  color: var(--accent-mint);
}

.minimal-cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto 34px auto;
}

.btn-green-black {
  background: var(--accent-mint);
  color: #061510;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(0, 230, 118, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  font-weight: 700;
}

.btn-green-black:hover {
  transform: translateY(-2px);
  background: #ffffff;
  color: var(--primary-deep);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
}

/* UPLIV PARTNER CTA BANNER CARD */
.upliv-partner-cta-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 50px 45px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.partner-cta-title {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 12px;
  line-height: 1.25;
}

.partner-cta-desc {
  color: #cbd5e1;
  font-size: 0.95rem;
  max-width: 680px;
  line-height: 1.65;
}

.partner-cta-btn-col {
  flex-shrink: 0;
}

/* Custom Premium White UI for Partner Section CTA Button */
.partner-cta-btn-glow {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  color: #059512;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.8);
  border: 1.5px solid #ffffff;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.partner-cta-btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(5, 149, 18, 0.25), transparent);
  transition: left 0.6s ease;
}

.partner-cta-btn-glow:hover::before {
  left: 100%;
}

.partner-cta-btn-glow:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #00e676 0%, #059512 100%);
  color: #041c0e;
  border-color: #00e676;
  box-shadow: 0 16px 40px rgba(0, 230, 118, 0.6), 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.partner-btn-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #059512;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.partner-cta-btn-glow:hover .partner-btn-arrow {
  transform: translate(3px, -3px) rotate(45deg);
  background: #041c0e;
  color: #00e676;
}
.about-card-img-wrap {
  position: relative;
  border-radius: 220px;
  overflow: visible !important;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 440px;
}

.about-card-img-wrap img {
  width: 380px;
  height: 540px;
  object-fit: cover;
  object-position: top center;
  border-radius: 200px;
  box-shadow: 0 25px 60px rgba(20, 54, 42, 0.22);
  border: 4px solid var(--primary-deep);
}

.floating-stat-overlap {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(20, 54, 42, 0.15);
  padding: 12px 18px;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  min-width: 190px;
}

/* OUTSIDE POSITIONS WITH CONTINUOUS GENTLE FLOATING ANIMATION */
.floating-stat-overlap.pos-1 { 
  top: 10px; 
  left: -95px; 
  animation: floatAnim1 4s ease-in-out infinite;
}

.floating-stat-overlap.pos-2 { 
  top: 25px; 
  right: -95px; 
  animation: floatAnim2 4.5s ease-in-out infinite 0.5s;
}

.floating-stat-overlap.pos-3 { 
  top: 190px; 
  left: -105px; 
  animation: floatAnim3 5s ease-in-out infinite 1s;
}

.floating-stat-overlap.pos-4 { 
  top: 255px; 
  right: -95px; 
  animation: floatAnim4 4.2s ease-in-out infinite 1.5s;
}

.floating-stat-overlap.pos-5 { 
  top: 375px; 
  left: -85px; 
  animation: floatAnim1 4.8s ease-in-out infinite 0.8s;
}

.floating-stat-overlap.pos-6 { 
  top: 425px; 
  right: -85px; 
  animation: floatAnim2 5.2s ease-in-out infinite 1.2s;
}

/* Floating Keyframes */
@keyframes floatAnim1 {
  0%, 100% { transform: translateY(0px) rotate(-3.5deg); }
  50% { transform: translateY(-10px) rotate(-1.5deg); }
}

@keyframes floatAnim2 {
  0%, 100% { transform: translateY(0px) rotate(2.8deg); }
  50% { transform: translateY(-12px) rotate(4.5deg); }
}

@keyframes floatAnim3 {
  0%, 100% { transform: translateY(0px) rotate(1.8deg); }
  50% { transform: translateY(-9px) rotate(0.2deg); }
}

@keyframes floatAnim4 {
  0%, 100% { transform: translateY(0px) rotate(-2.5deg); }
  50% { transform: translateY(-11px) rotate(-4.2deg); }
}

.floating-stat-overlap:hover {
  animation-play-state: paused;
  transform: translateY(-6px) scale(1.08) rotate(0deg) !important;
  box-shadow: 0 25px 50px rgba(20, 54, 42, 0.32);
  border-color: var(--primary-deep);
  z-index: 30;
}

.floating-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 122, 51, 0.12);
  color: #007a33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* STACKED CARD SCROLLING ANIMATION */
.services-scrolly-section {
  padding: 90px 0;
  background: var(--bg-surface);
  position: relative;
}

.services-scrolly-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
  align-items: flex-start;
}

.sticky-left-box {
  position: sticky;
  top: 140px;
}

.stack-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.stack-card-item {
  position: sticky;
  top: 140px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(20, 54, 42, 0.14);
  border-radius: 36px;
  padding: 48px;
  box-shadow: 0 20px 50px rgba(20, 54, 42, 0.12);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  margin-bottom: 30px;
}

.stack-card-item:nth-child(1) { top: 140px; z-index: 1; }
.stack-card-item:nth-child(2) { top: 170px; z-index: 2; }
.stack-card-item:nth-child(3) { top: 200px; z-index: 3; }

.stack-card-item:hover {
  box-shadow: 0 30px 60px rgba(20, 54, 42, 0.2);
}

.stack-icon-purple {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #8a2be2, #4b0082);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

.stack-icon-emerald {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary-mid));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  box-shadow: 0 10px 25px rgba(20, 54, 42, 0.3);
}

.stack-progress-line {
  width: 4px;
  height: 120px;
  background: rgba(20, 54, 42, 0.15);
  border-radius: 2px;
  position: relative;
  margin-right: 16px;
  overflow: hidden;
}

.stack-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 33%;
  background: var(--primary-deep);
  border-radius: 2px;
  transition: var(--transition);
}

.pillar-list li {
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pillar-list li i {
  color: var(--primary-deep);
}

/* Industry Chips */
.chips-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}

.chip-item {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  font-size: 0.92rem;
  color: #1e293b;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: var(--transition);
}

.chip-item:hover {
  background: var(--light-mint-bg);
  border-color: var(--primary-deep);
  color: var(--primary-deep);
  transform: translateY(-2px);
}

/* ==========================================
   UPLIV INFINITE DUAL-ROW MARQUEE SLIDER
   (Exact Match to User Screenshot)
   ========================================== */
.testimonial-section {
  padding: 80px 0;
  background: var(--bg-surface);
  overflow: hidden;
}

.testimonial-header-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

/* Marquee Outer Container */
.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track-left {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeLeft 35s linear infinite;
}

.marquee-track-right {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeRight 35s linear infinite;
}

.marquee-container:hover .marquee-track-left,
.marquee-container:hover .marquee-track-right {
  animation-play-state: paused;
}

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

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

/* Marquee Card Styling */
.marquee-card {
  width: 380px;
  flex-shrink: 0;
  background: var(--bg-white);
  border: 1px solid var(--light-border);
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

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

.marquee-quote {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 18px;
}

.marquee-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(20, 54, 42, 0.08);
}

.marquee-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--light-mint-bg);
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light-border);
}

.marquee-author-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--primary-deep);
}

.marquee-author-role {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

/* 2-COLUMN FAQ SECTION */
.faq-two-col-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: flex-start;
  padding: 60px 0;
}

.faq-left-title {
  font-family: 'Aclonica', cursive, sans-serif;
  color: var(--primary-deep);
  font-size: 3.2rem;
  margin-bottom: 14px;
  line-height: 1;
}

.faq-left-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.faq-left-dots span {
  display: inline-block;
  height: 4px;
  border-radius: 2px;
  background-color: var(--primary-deep);
}

.faq-left-dots .dot { width: 6px; }
.faq-left-dots .line { width: 30px; }

.faq-left-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-bar-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-bar-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-deep) 100%);
  color: #ffffff;
  padding: 16px 22px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-bar-header:hover {
  background: linear-gradient(135deg, #061510 0%, #0e291f 100%);
}

.faq-bar-body {
  background-color: #ffffff;
  padding: 22px 26px;
  font-size: 0.94rem;
  color: #334155;
  line-height: 1.65;
  display: none;
  border-left: 4px solid var(--primary-deep);
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.faq-bar-body p {
  margin-bottom: 10px;
}

.faq-bar-body p:last-child {
  margin-bottom: 0;
}

.faq-bar-item.active .faq-bar-body {
  display: block;
}

/* Contact Page Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 60px 0;
}

.connect-card {
  text-align: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
}

.connect-avatar {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a846, #005a25);
  margin: 0 auto 20px auto;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0, 168, 70, 0.3);
}

.connect-avatar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.15) translateY(10px);
}

.connect-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary-deep);
}

.connect-role {
  font-size: 0.95rem;
  color: var(--primary-deep);
  font-weight: 600;
  margin-bottom: 20px;
}

.connect-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 340px;
  margin: 28px auto 0 auto;
}

.connect-btn {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-deep));
  color: white;
  padding: 14px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(20, 54, 42, 0.25);
  transition: var(--transition);
}

.connect-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 54, 42, 0.4);
}

.form-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-box h3 {
  font-family: var(--font-heading);
  color: var(--primary-deep);
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 0.92rem;
  color: var(--primary-deep);
  font-weight: 600;
  margin-bottom: 6px;
}

.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

/* Contact Hero & Responsive Form Classes */
.contact-hero-banner {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(242, 250, 243, 0.88) 100%), url('images/contact_banner_bg.webp');
  background-size: cover;
  background-position: center;
  color: #1a1c1c;
  text-align: center;
  border-bottom: 1px solid rgba(5, 149, 18, 0.15);
  margin-bottom: 50px;
  padding: 160px 0 70px 0;
  position: relative;
}

.contact-hero-h1 {
  font-family: var(--font-heading);
  color: #1a1c1c;
  font-size: 3.4rem;
  margin-bottom: 20px;
  line-height: 1.25;
}

.contact-hero-p {
  font-size: 1.12rem;
  color: #4e5e52;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.75;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.budget-options-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.budget-pill-label {
  font-weight: normal;
  font-size: 0.85rem;
  background: var(--bg-surface);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.budget-pill-label:hover {
  border-color: var(--primary-deep);
  background: rgba(5, 149, 18, 0.05);
}

/* ==============================================================================
   WORLD-CLASS INTERACTIVE ANIMATIONS & MICRO-INTERACTIONS
   ============================================================================== */

@keyframes heroFadeDown {
  0% { opacity: 0; transform: translateY(-24px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroFadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes avatarFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes pulseDotGlow {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(5, 149, 18, 0.6); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 10px rgba(5, 149, 18, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(5, 149, 18, 0); }
}

@keyframes textGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animated-gradient-text {
  background: linear-gradient(135deg, #059512, #00e676, #03680c, #059512);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradientShift 5s ease infinite;
  display: inline-block;
}

.animated-avatar-img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  will-change: transform;
}

.animated-avatar-img:hover {
  transform: scale(1.08) rotate(3deg) !important;
  filter: brightness(1.06) drop-shadow(0 15px 25px rgba(5, 149, 18, 0.3));
}

/* Scroll Entrance Classes */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.animate-fade-up {
  transform: translateY(40px);
}

.animate-fade-down {
  transform: translateY(-40px);
}

.animate-slide-left {
  transform: translateX(-40px);
}

.animate-slide-right {
  transform: translateX(40px);
}

.animate-scale-up {
  transform: scale(0.92);
}

.animate-on-scroll.is-visible {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

/* Staggered Delay Classes */
.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }

/* Hero Section Entrance Animations */
.contact-hero-banner .hero-upliv-badge {
  animation: heroFadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.contact-hero-banner .pulse-dot {
  animation: pulseDotGlow 2s infinite ease-in-out;
}

.contact-hero-h1 {
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.contact-hero-p {
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* Avatar Floating & Hover Glow */
.connect-avatar {
  animation: avatarFloat 4s ease-in-out infinite;
  transition: all 0.4s ease;
}

.connect-avatar:hover {
  transform: scale(1.06) rotate(2deg);
  box-shadow: 0 12px 32px rgba(5, 149, 18, 0.35);
}

/* Connect Card & Form Box Floating Hover Effects */
.connect-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.connect-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(5, 149, 18, 0.12);
}

.form-box {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.form-box:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 149, 18, 0.25);
  box-shadow: 0 22px 50px rgba(5, 149, 18, 0.14);
}

/* Connect Buttons Micro-Interactions & Arrow Flight */
.connect-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.connect-btn .arrow-icon-btn {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.connect-btn:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 10px 25px rgba(5, 149, 18, 0.4) !important;
}

.connect-btn:hover .arrow-icon-btn {
  transform: translate(4px, -4px) !important;
}

.connect-btn:active {
  transform: translateY(0) scale(0.98) !important;
}

/* Form Input Focus Glow Animations */
.form-field input,
.form-field select,
.form-field textarea {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease !important;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #059512 !important;
  box-shadow: 0 0 0 4px rgba(5, 149, 18, 0.18) !important;
  outline: none !important;
  transform: translateY(-1px);
}

/* Budget Radio Option Pills Interactive Highlight */
.budget-pill-label {
  transition: all 0.3s ease !important;
}

.budget-pill-label:has(input:checked),
.budget-pill-label.active {
  background: #059512 !important;
  color: #ffffff !important;
  border-color: #059512 !important;
  box-shadow: 0 6px 18px rgba(5, 149, 18, 0.35) !important;
  transform: translateY(-2px) !important;
}

/* Submit Button Ripple & Arrow Shift */
.btn-pill-green {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-pill-green .arrow-icon-btn {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-pill-green:hover .arrow-icon-btn {
  transform: translate(4px, -4px) !important;
}

/* Footer */
.site-footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 60px 0 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-title {
  font-family: var(--font-heading);
  color: white;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer-nav li {
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.footer-nav a {
  color: #cbd5e1;
}

.footer-nav a:hover {
  color: var(--accent-mint);
  padding-left: 4px;
}

.copyright {
  background-color: #06110d;
  text-align: center;
  padding: 18px;
  color: #94a3b8;
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-ring 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  color: white;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive */
/* ==========================================
   UPLIV INSPIRED "WHY CHOOSE US" SECTION
   (Exact Match to User Screenshot)
   ========================================== */
.why-choose-section {
  padding: 90px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

.why-choose-left-sticky {
  position: sticky;
  top: 140px;
}

.why-choose-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.why-choose-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #94a3b8;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  padding: 4px 0;
}

.why-choose-nav-item .nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: var(--transition);
}

.why-choose-nav-item:hover, .why-choose-nav-item.active {
  color: var(--primary-deep);
  font-weight: 700;
}

.why-choose-nav-item.active .nav-dot {
  background: var(--primary-deep);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(20, 54, 42, 0.4);
}

.why-choose-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-showcase-card {
  background: var(--bg-white);
  border: 1px solid var(--light-border);
  border-radius: 28px;
  padding: 44px 48px;
  box-shadow: 0 15px 35px rgba(20, 54, 42, 0.06);
  transition: var(--transition);
  position: relative;
}

.why-showcase-card:hover {
  box-shadow: 0 25px 50px rgba(20, 54, 42, 0.12);
  border-color: var(--primary-deep);
}

.why-card-tag {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: #007a33;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-deep);
  margin-bottom: 14px;
}

.why-card-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-left-sticky {
    position: static;
    top: 0;
  }
}

/* ==========================================
   UPLIV WORKSPACE HUB CHAT FAQ COMPONENT
   ========================================== */
.faq-chat-card {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(5, 149, 18, 0.18);
  box-shadow: 0 20px 50px rgba(5, 149, 18, 0.08);
  padding: 32px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  min-height: 540px;
}

@media (max-width: 992px) {
  .faq-chat-card {
    grid-template-columns: 1fr;
  }
}

.faq-topic-column {
  border-right: 1px solid #e2e8f0;
  padding-right: 24px;
}

@media (max-width: 992px) {
  .faq-topic-column {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 24px;
  }
}

.faq-topic-header-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.faq-search-bar {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid #e2e8f0;
  background: #f8faf8;
  font-size: 0.9rem;
  color: #1a1c1c;
  margin-bottom: 20px;
  outline: none;
  transition: var(--transition);
}

.faq-search-bar:focus {
  border-color: var(--primary-deep);
  background: #ffffff;
  box-shadow: 0 0 12px rgba(5, 149, 18, 0.15);
}

.faq-topic-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
}

.faq-topic-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid transparent;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.faq-topic-item:hover {
  background: #f2faf3;
  color: var(--primary-deep);
}

.faq-topic-item.active {
  background: var(--primary-deep);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(5, 149, 18, 0.25);
}

.faq-topic-item i {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.faq-topic-item.active i {
  transform: translateX(4px);
}

/* Chat Hub Window */
.faq-chat-window {
  display: flex;
  flex-direction: column;
  background: #f8faf8;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.faq-chat-header {
  background: #ffffff;
  padding: 16px 24px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-deep);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chat-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: #00e676;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.chat-user-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1e293b;
}

.chat-status-text {
  font-size: 0.75rem;
  color: var(--primary-deep);
  font-weight: 700;
}

.chat-helper-tag {
  background: #d2f8d6;
  color: var(--primary-deep);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

/* Chat Body */
.faq-chat-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  max-height: 440px;
  min-height: 420px;
}

.chat-bubble {
  max-width: 82%;
  padding: 14px 20px;
  border-radius: 18px;
  font-size: 0.92rem;
  line-height: 1.65;
  animation: fadeInBubble 0.3s ease forwards;
}

@keyframes fadeInBubble {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.bot-bubble {
  align-self: flex-start;
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  border-bottom-left-radius: 4px;
}

.user-bubble {
  align-self: flex-end;
  background: var(--primary-deep);
  color: #ffffff;
  font-weight: 600;
  border-bottom-right-radius: 4px;
  box-shadow: 0 6px 18px rgba(5, 149, 18, 0.25);
}

/* Typing Dots Animation */
.thinking-bubble {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 24px;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-deep);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

.faq-chat-footer {
  padding: 14px 20px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 12px;
  align-items: center;
}

.chat-dummy-input {
  flex: 1;
  background: #f1f5f9;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 0.82rem;
  color: #94a3b8;
  border: none;
  outline: none;
}

.chat-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d2f8d6;
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 0.9rem;
}

/* ==========================================
   SITE FOOTER DEEP GREEN GRADIENT STYLING
   ========================================== */
.site-footer {
  background: linear-gradient(135deg, #020e06 0%, #062612 50%, #010b05 100%);
  color: #ffffff;
  padding: 75px 0 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(5, 149, 18, 0.25);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(5, 149, 18, 0.32), transparent 70%);
  pointer-events: none;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
}

.footer-title {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: #00e676;
  padding-left: 4px;
}

.copyright {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================
   UPLIV WORKING PROCESS TIMELINE COMPONENT
   ========================================== */
.upliv-process-section {
  padding: 100px 0;
  background: #f8faf9;
  position: relative;
}

.upliv-process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: flex-start;
}

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

.process-sticky-left {
  position: sticky;
  top: 140px;
}

.process-step-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 36px;
}

.process-step-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  width: fit-content;
  text-decoration: none;
}

.process-step-nav-item.active,
.process-step-nav-item:hover {
  background: #062612;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(6, 38, 18, 0.22);
}

.process-step-nav-num {
  font-size: 0.78rem;
  opacity: 0.8;
  font-family: var(--font-heading);
}

.process-timeline-right {
  position: relative;
  padding-left: 45px;
}

@media (max-width: 576px) {
  .process-timeline-right {
    padding-left: 25px;
  }
}

/* Vertical Timeline Track Line */
.process-timeline-right::before {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 0px;
  width: 2px;
  background: rgba(5, 149, 18, 0.2);
}

.process-card-item {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 42px 48px;
  margin-bottom: 36px;
  box-shadow: 0 12px 35px rgba(5, 149, 18, 0.05);
  border: 1px solid rgba(5, 149, 18, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(5, 149, 18, 0.12);
  border-color: var(--primary-deep);
}

/* Timeline Dot Node */
.process-card-item::before {
  content: '';
  position: absolute;
  left: -45px;
  top: 48px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--primary-deep);
  box-shadow: 0 0 0 5px rgba(5, 149, 18, 0.15);
  z-index: 2;
  transform: translateX(-50%);
}

.process-card-num-watermark {
  position: absolute;
  top: 20px;
  right: 32px;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: rgba(5, 149, 18, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.process-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.process-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(5, 149, 18, 0.08);
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.process-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #1a1c1c;
}

.process-card-desc {
  font-size: 0.96rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.process-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.process-tag-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: #f1f5f3;
  color: #475569;
  text-transform: uppercase;
  border: 1px solid rgba(5, 149, 18, 0.1);
}

/* ==========================================
   BRAND PARTNERS LOGO CARDS (MATCHING REFERENCE SCREENSHOT)
   ========================================== */
.brand-partners-section {
  position: relative;
  background: radial-gradient(circle at 50% 30%, #11261b 0%, #09130d 60%, #050a07 100%);
}

.brand-logo-card {
  min-width: 190px;
  height: 95px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.brand-logo-card:hover {
  background: rgba(5, 149, 18, 0.18);
  border-color: rgba(0, 230, 118, 0.45);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 230, 118, 0.2);
}

.brand-logo-card img {
  max-width: 140px;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.05) contrast(1.05);
  transition: transform 0.3s ease;
}

.brand-logo-card:hover img {
  transform: scale(1.08);
}

/* ==========================================
   UI TRAIL CASE STUDY CARD SYSTEM (MATCHING REFERENCE IMAGE EXACTLY)
   ========================================== */
.ui-trail-case-card {
  background: #ffffff;
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef3f0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.ui-trail-case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(5, 149, 18, 0.14);
}

.ui-card-top-banner {
  position: relative;
  height: 260px;
  border-radius: 28px;
  overflow: hidden;
}

.ui-card-top-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ui-trail-case-card:hover .ui-card-top-banner img {
  transform: scale(1.06);
}

.ui-card-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, rgba(5, 18, 10, 0.75) 50%, rgba(3, 12, 6, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
}

.ui-banner-left-info {
  color: #ffffff;
  flex: 1;
  min-width: 0;
}

.ui-banner-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.2px;
}

.ui-banner-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  color: #bbf7d0;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.ui-banner-pill-btn {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-end;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.ui-banner-pill-btn:hover {
  background: var(--primary-deep);
  border-color: var(--primary-deep);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 149, 18, 0.45);
}

.ui-card-content-body {
  padding: 22px 14px 10px 14px;
}

.ui-card-main-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #1a1c1c;
  line-height: 1.35;
  margin-bottom: 4px;
}

.ui-card-byline {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 16px;
}

.ui-card-divider {
  height: 1px;
  background: #eef3f0;
  margin-bottom: 18px;
}

.ui-card-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ui-stats-flex {
  display: flex;
  gap: 20px;
}

.ui-stat-col {
  display: flex;
  flex-direction: column;
}

.ui-stat-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary-deep);
  font-weight: 800;
  line-height: 1.1;
}

.ui-stat-label {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 3px;
}

.ui-map-icon-box {
  width: 82px;
  height: 60px;
  background: #f4f8f5;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(5, 149, 18, 0.1);
}

.ui-card-desc-text {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 16px;
}

.ui-card-expand-footer {
  text-align: center;
  padding-top: 6px;
  color: #94a3b8;
  font-size: 1.1rem;
}

/* ==========================================
   ENHANCED CASE STUDY PAGE UI STYLES
   ========================================== */

/* Reading Progress Bar */
.cs-reading-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #059512 0%, #00e676 100%);
  width: 0%;
  z-index: 10001;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(0, 230, 118, 0.6);
}

/* Quick Meta Chips */
.cs-meta-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.cs-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(5, 149, 18, 0.18);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1c1c;
  box-shadow: 0 4px 14px rgba(5, 149, 18, 0.06);
  transition: var(--transition);
}

.cs-meta-chip:hover {
  transform: translateY(-2px);
  border-color: var(--primary-deep);
  box-shadow: 0 8px 20px rgba(5, 149, 18, 0.12);
}

/* Stats Highlight Grid */
.cs-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 35px 0;
}

.cs-stat-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(5, 149, 18, 0.14);
  box-shadow: 0 10px 30px rgba(5, 149, 18, 0.06);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.cs-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-deep), #00e676);
  opacity: 0.8;
}

.cs-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(5, 149, 18, 0.15);
  border-color: var(--primary-deep);
}

.cs-stat-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(5, 149, 18, 0.08);
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 14px auto;
  transition: var(--transition);
}

.cs-stat-card:hover .cs-stat-icon-box {
  background: var(--primary-deep);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.cs-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #1a1c1c;
  line-height: 1.1;
  margin-bottom: 6px;
}

.cs-stat-lbl {
  font-size: 0.82rem;
  color: #475569;
  font-weight: 600;
}

/* Sticky Glass TOC Navigation Bar */
.cs-sticky-toc-wrapper {
  position: sticky;
  top: 100px;
  z-index: 990;
  margin: 30px 0 45px 0;
}

.cs-toc-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(5, 149, 18, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cs-toc-pill {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.cs-toc-pill:hover,
.cs-toc-pill.active {
  background: var(--primary-dark);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(3, 104, 12, 0.3);
}

.cs-toc-pill i {
  font-size: 0.85rem;
  color: var(--primary-deep);
}

.cs-toc-pill:hover i,
.cs-toc-pill.active i {
  color: var(--accent-mint);
}

/* Challenge Cards Grid */
.cs-challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.cs-challenge-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #fee2e2;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.04);
  transition: var(--transition);
  position: relative;
}

.cs-challenge-card:hover {
  transform: translateY(-4px);
  border-color: #fca5a5;
  box-shadow: 0 14px 35px rgba(239, 68, 68, 0.12);
}

.cs-challenge-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cs-challenge-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fef2f2;
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.cs-challenge-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fee2e2;
  color: #991b1b;
  text-transform: uppercase;
}

.cs-challenge-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #1e293b;
  margin-bottom: 6px;
}

.cs-challenge-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}

/* Solution Steps List */
.cs-solution-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.cs-solution-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(5, 149, 18, 0.14);
  box-shadow: 0 10px 30px rgba(5, 149, 18, 0.05);
  display: flex;
  gap: 22px;
  transition: var(--transition);
}

.cs-solution-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-deep);
  box-shadow: 0 16px 40px rgba(5, 149, 18, 0.12);
}

.cs-sol-num-badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary-dark));
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(5, 149, 18, 0.3);
}

.cs-sol-content {
  flex: 1;
}

.cs-sol-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #1a1c1c;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.cs-sol-chip {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(5, 149, 18, 0.1);
  color: var(--primary-deep);
}

.cs-sol-bullets {
  list-style: none;
  padding: 0;
}

.cs-sol-bullets li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: #334155;
}

.cs-sol-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-deep);
  font-weight: 900;
}

/* Before vs After Comparison Card */
.cs-ba-wrapper {
  background: linear-gradient(135deg, #071c12 0%, #0d2b1d 100%);
  border-radius: 28px;
  padding: 36px;
  color: #ffffff;
  margin: 35px 0;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cs-ba-header {
  text-align: center;
  margin-bottom: 30px;
}

.cs-ba-header h3 {
  color: var(--accent-mint);
  font-size: 1.6rem;
}

.cs-ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .cs-ba-grid {
    grid-template-columns: 1fr;
  }
  .cs-solution-card {
    flex-direction: column;
  }
}

.cs-ba-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.cs-ba-box.before-box {
  border-left: 4px solid #ef4444;
}

.cs-ba-box.after-box {
  border-left: 4px solid #00e676;
  background: rgba(5, 149, 18, 0.12);
}

.cs-ba-badge {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 14px;
}

.before-box .cs-ba-badge {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.after-box .cs-ba-badge {
  background: rgba(0, 230, 118, 0.2);
  color: #bbf7d0;
}

.cs-ba-list {
  list-style: none;
  padding: 0;
}

.cs-ba-list li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-ba-list li i {
  font-size: 0.95rem;
}

.before-box .cs-ba-list li i {
  color: #ef4444;
}

.after-box .cs-ba-list li i {
  color: #00e676;
}

@media (min-width: 992px) {
  .cs-stats-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .cs-challenge-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* ==========================================
   COMPARISON TABLE UI STYLES
   ========================================== */
.cs-table-wrapper {
  background: linear-gradient(145deg, #061a10 0%, #0c2619 100%);
  border-radius: 28px;
  padding: 36px 32px;
  color: #ffffff;
  margin: 35px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(5, 149, 18, 0.25);
  overflow: hidden;
}

.cs-table-header {
  text-align: center;
  margin-bottom: 28px;
}

.cs-table-header h3 {
  font-family: var(--font-heading);
  color: var(--accent-mint);
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.cs-table-header p {
  color: #94a3b8;
  font-size: 0.92rem;
}

.cs-table-container {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.cs-comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 680px;
}

.cs-comparison-table th {
  padding: 18px 20px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
}

.cs-comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.92rem;
  vertical-align: middle;
}

.cs-comparison-table tbody tr {
  transition: background 0.25s ease;
}

.cs-comparison-table tbody tr:hover {
  background: rgba(5, 149, 18, 0.12);
}

.cs-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.metric-flex {
  display: flex;
  align-items: center;
  gap: 12px;
}

.metric-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(5, 149, 18, 0.15);
  color: var(--accent-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.metric-sub {
  display: block;
  font-size: 0.76rem;
  color: #94a3b8;
  font-weight: 400;
  margin-top: 2px;
}

.table-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.tag-before {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.tag-after {
  background: rgba(0, 230, 118, 0.2);
  color: #bbf7d0;
  border: 1px solid rgba(0, 230, 118, 0.35);
}

.td-before {
  color: #fca5a5;
}

.td-before i {
  color: #ef4444;
  margin-right: 6px;
}

.td-after {
  color: #ffffff;
}

.td-after i {
  color: #00e676;
  margin-right: 6px;
}

.td-after strong {
  color: var(--accent-mint);
}

/* Mobile Responsive Transformation Cards System */
.cs-mobile-transform-list {
  display: none;
}

@media screen and (max-width: 768px) {
  .cs-table-container {
    display: none !important;
  }

  .cs-mobile-transform-list {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
  }

  .cs-mobile-transform-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 18px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .cs-mobile-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .cs-mobile-metric-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: #ffffff;
  }

  .cs-mobile-metric-sub {
    font-size: 0.76rem;
    color: #94a3b8;
  }

  .cs-mobile-ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }

  @media screen and (max-width: 480px) {
    .cs-mobile-ba-grid {
      grid-template-columns: 1fr;
    }
  }

  .cs-mobile-ba-item {
    background: rgba(0, 0, 0, 0.25);
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .cs-mobile-ba-item.before {
    border-left: 3px solid #ef4444;
  }

  .cs-mobile-ba-item.after {
    border-left: 3px solid #00e676;
    background: rgba(5, 149, 18, 0.15);
  }

  .cs-mobile-ba-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 999px;
    margin-bottom: 6px;
  }

  .cs-mobile-ba-text {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .cs-mobile-ba-item.before .cs-mobile-ba-text {
    color: #fca5a5;
  }

  .cs-mobile-ba-item.before .cs-mobile-ba-text i {
    color: #ef4444;
    margin-right: 4px;
  }

  .cs-mobile-ba-item.after .cs-mobile-ba-text {
    color: #ffffff;
  }

  .cs-mobile-ba-item.after .cs-mobile-ba-text i {
    color: #00e676;
    margin-right: 4px;
  }

  .cs-mobile-card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}

.impact-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.badge-green {
  background: rgba(0, 230, 118, 0.15);
  color: #00e676;
  border: 1px solid rgba(0, 230, 118, 0.3);
}

.badge-mint {
  background: rgba(5, 149, 18, 0.2);
  color: var(--accent-mint);
  border: 1px solid rgba(5, 149, 18, 0.35);
}

.badge-purple {
  background: rgba(168, 85, 247, 0.2);
  color: #e9d5ff;
  border: 1px solid rgba(168, 85, 247, 0.35);
}

.badge-gold {
  background: rgba(234, 179, 8, 0.2);
  color: #fef08a;
  border: 1px solid rgba(234, 179, 8, 0.35);
}

/* Premium CTA Glow Button */
.btn-cta-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #d2f8d6 100%);
  color: #03680c;
  border-radius: 999px;
  padding: 16px 38px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn-cta-glow:hover {
  background: linear-gradient(135deg, #d2f8d6 0%, #ffffff 100%);
  color: #059512;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 230, 118, 0.45);
}

.btn-cta-glow .arrow-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #03680c;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-left: 4px;
  transition: var(--transition);
}

.btn-cta-glow:hover .arrow-icon-btn {
  background: #059512;
  transform: translateX(3px) translateY(-3px);
}

/* Desktop Base Sidebar Hidden Rules */
.sidebar-header-row,
.sidebar-footer-box,
.mobile-nav-overlay,
.sidebar-sub-links,
.sidebar-socials-row,
.sidebar-search-wrap {
  display: none !important;
}

.sidebar-center-content {
  display: flex;
  align-items: center;
}

.sidebar-nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ==============================================================================
   RESPONSIVE MEDIA QUERIES & MOBILE OPTIMIZATION
   Strictly scoped to max-width (Tablet / Mobile Devices Only)
   Desktop layout (screens > 1024px) remains 100% UNCHANGED.
   ============================================================================== */

/* ------------------------------------------------------------------------------
   1. LAPTOPS & TABLETS (max-width: 1024px)
   ------------------------------------------------------------------------------ */
@media screen and (max-width: 1024px) {
  .container {
    width: 92%;
  }

  .nav-glass-container {
    max-width: 100%;
    padding: 10px 24px;
  }

  .hero-main-name-title {
    font-size: 2.8rem;
  }

  .hero-stage-3col-grid {
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 20px;
  }

  .services-scrolly-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
  }

  .why-choose-grid,
  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-2col-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ------------------------------------------------------------------------------
   2. TABLETS & SMALL LAPTOPS (max-width: 992px)
   ------------------------------------------------------------------------------ */
@media screen and (max-width: 992px) {
  /* Prevent horizontal overflow */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  /* Top Bar Adjustment */
  .top-bar {
    font-size: 0.78rem;
    padding: 6px 0;
  }

  .top-info {
    gap: 12px;
    justify-content: center;
    width: 100%;
  }

  .top-socials {
    display: none;
  }

  /* Header & Floating Glass Navbar */
  .header-navbar {
    top: 10px !important;
    padding: 0 12px;
  }

  .header-navbar.scrolled {
    top: 8px !important;
  }

  .nav-glass-container {
    padding: 8px 18px;
    border-radius: 16px;
  }

  /* Mobile Hamburger Toggle */
  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(5, 149, 18, 0.1);
    color: var(--primary-deep);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
  }

  .mobile-toggle:hover {
    background: rgba(5, 149, 18, 0.2);
  }

  /* ==============================================================================
     CYLVAN-INSPIRED LUXURY FULL-SCREEN MOBILE NAVIGATION
     ============================================================================== */
  .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 18, 10, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #eef2ef !important; /* Luxury light sage backdrop matching reference screenshot */
    border-radius: 0 !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 20px 24px 30px 24px !important;
    box-shadow: none !important;
    border: none !important;
    display: flex !important;
    gap: 0 !important;
    z-index: 99999 !important;
    transform: translateX(-100%) !important;
    opacity: 0 !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease !important;
    overflow-y: auto !important;
  }

  .nav-menu.active {
    transform: translateX(0) !important;
    opacity: 1 !important;
  }

  /* Header Row: Back Arrow + Brand Title + Right Icon */
  .sidebar-header-row {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(6, 21, 16, 0.08);
    width: 100%;
  }

  .sidebar-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    color: #061510;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }

  .sidebar-close-btn:hover {
    color: #059512;
    transform: scale(1.1);
  }

  .sidebar-brand-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: #061510;
    text-transform: uppercase;
    margin: 0;
  }

  .sidebar-top-right-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #061510;
    font-size: 1.1rem;
  }

  /* Main Centered Nav Links */
  .sidebar-center-content {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto 0;
    width: 100%;
    padding: 20px 0;
  }

  .sidebar-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    width: 100%;
  }

  .sidebar-nav-list li {
    width: 100%;
    text-align: center;
  }

  .sidebar-nav-list .nav-link {
    display: inline-block !important;
    padding: 6px 12px !important;
    font-family: var(--font-heading) !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    letter-spacing: 2.5px !important;
    color: #061510 !important;
    text-transform: uppercase !important;
    background: transparent !important;
    border: none !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
  }

  .sidebar-nav-list .nav-link i {
    display: none !important;
  }

  .sidebar-nav-list .nav-link:hover,
  .sidebar-nav-list .nav-link.active {
    color: #059512 !important;
    transform: translateY(-2px) !important;
  }

  /* Sub-links (Log in / Create account style in screenshot) */
  .sidebar-sub-links {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
  }

  .sidebar-sub-link {
    font-size: 0.92rem;
    color: #4a5d52;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .sidebar-sub-link:hover {
    color: #059512;
  }

  /* Social Icons Row Centered */
  .sidebar-socials-row {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }

  .sidebar-socials-row a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(6, 21, 16, 0.06);
    color: #061510;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(6, 21, 16, 0.1);
  }

  .sidebar-socials-row a:hover {
    background: #059512;
    color: #ffffff;
    border-color: #059512;
    transform: translateY(-2px);
  }

  /* Bottom Search Bar Component */
  .sidebar-search-wrap {
    display: none !important;
  }

  .sidebar-search-input::placeholder {
    color: #7a8c80;
  }

  .sidebar-search-btn {
    background: transparent;
    border: none;
    color: #061510;
    font-size: 1rem;
    cursor: pointer;
  }

  /* Hero Section Responsiveness */
  .hero-upliv-section {
    padding: 95px 0 40px 0;
  }

  .hero-spin-badge-wrap {
    display: none !important;
  }

  .hero-main-name-title {
    font-size: 2.3rem !important;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .hero-stage-3col-grid {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
  }

  .hero-center-stage {
    order: 1;
    margin: 0 auto;
    width: 100%;
    max-width: 340px;
    position: relative;
  }

  .hero-portrait-cutout {
    position: relative;
    z-index: 10 !important;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
  }

  .hero-green-arch-backdrop {
    position: absolute;
    bottom: 0;
    width: 260px;
    height: 280px;
    z-index: 1 !important;
  }

  .hero-floating-badge {
    display: inline-flex !important;
    padding: 6px 12px;
    font-size: 0.74rem;
    box-shadow: 0 8px 20px rgba(5, 149, 18, 0.22);
    z-index: 3 !important; /* Floating BEHIND Srija's portrait cutout (z-index: 10) */
  }

  /* Positioned cleanly on outer sides to prevent covering Srija's face & body */
  .badge-pos-1 {
    top: 5%;
    left: -20px;
  }

  .badge-pos-2 {
    top: 8%;
    right: -15px;
  }

  .badge-pos-3 {
    top: 38%;
    left: -35px;
  }

  .badge-pos-4 {
    top: 45%;
    right: -25px;
  }

  .badge-pos-5 {
    top: 72%;
    left: -30px;
  }

  /* Hero Left Quote Box & Reviews Mobile Center Alignment */
  .hero-left-quote-box {
    order: 2;
    text-align: center !important;
    padding-bottom: 0;
    margin: 20px auto 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-quote-icon-large {
    margin: 0 auto 4px auto !important;
    text-align: center !important;
  }

  .hero-left-quote-txt {
    text-align: center !important;
    max-width: 90%;
    margin: 0 auto 16px auto !important;
    font-size: 0.95rem !important;
  }

  .hero-rating-reviews-cluster {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto 20px auto !important;
  }

  .hero-rating-reviews-cluster > div {
    text-align: center !important;
  }

  .hero-reviews-val {
    text-align: center !important;
    font-size: 1.15rem !important;
    margin-bottom: 2px;
  }

  .hero-reviews-lbl {
    text-align: center !important;
    font-size: 0.8rem !important;
  }

  /* Hero Right Socials Mobile Center Alignment */
  .hero-right-pills-box {
    order: 3;
    text-align: center !important;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding-bottom: 20px;
  }

  .hero-right-pills-box > div {
    text-align: center !important;
    width: 100%;
  }

  .hero-socials-right-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 14px !important;
    margin: 0 auto !important;
  }

  .hero-portrait-cutout {
    max-width: 330px;
    margin: 0 auto;
  }

  .hero-center-stage {
    order: 1;
    margin: 0 auto 35px auto;
    width: 100%;
    max-width: 340px;
    position: relative;
  }

  .hero-overlapping-cta-box {
    position: absolute !important;
    bottom: -22px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 20 !important;
    background: #ffffff !important;
    border-radius: 999px !important;
    padding: 5px 6px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28) !important;
    white-space: nowrap !important;
    width: auto !important;
    max-width: 92% !important;
  }

  .cta-btn-dark-pill,
  .cta-btn-white-pill {
    width: auto !important;
    padding: 9px 18px !important;
    font-size: 0.82rem !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
  }

  .hero-tags-flex {
    display: none !important; /* Hidden on mobile so pills don't duplicate */
  }

  /* Services Scrolly Section */
  .services-scrolly-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .sticky-left-box {
    position: relative !important;
    top: 0 !important;
    max-width: 100% !important;
    text-align: center;
    margin-bottom: 20px;
  }

  .stack-progress-container {
    display: none !important;
  }

  .sticky-left-box h2 {
    text-align: center !important;
    font-size: 2.1rem !important;
  }

  .sticky-left-box p {
    margin: 0 auto 20px auto !important;
    text-align: center !important;
  }

  .stack-card-item {
    position: relative !important;
    top: 0 !important;
    margin-bottom: 24px !important;
    width: 100% !important;
    border-radius: 20px !important;
    padding: 24px 20px !important;
  }

  .stack-card-inner {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .stack-card-img {
    height: 220px !important;
    width: 100% !important;
  }

  /* Why Choose Me Showcase */
  .why-choose-nav-list {
    display: none !important;
  }
  
  .why-choose-nav-container {
    display: flex !important;
    overflow-x: auto !important;
    gap: 10px !important;
    padding-bottom: 12px !important;
    -webkit-overflow-scrolling: touch;
  }

  .why-choose-nav-item {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    font-size: 0.88rem !important;
    padding: 10px 18px !important;
  }

  .why-showcase-card {
    padding: 24px 20px !important;
    border-radius: 20px !important;
  }

  .why-showcase-card-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* 7-C Formula Process Steps */
  .process-7c-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .process-step-nav {
    display: none !important;
  }

  .process-step-nav-item {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  .process-card-item {
    padding: 24px 20px !important;
    border-radius: 20px !important;
  }

  /* Interactive FAQ Chat Hub */
  .faq-chat-layout {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .faq-topics-col {
    max-height: 320px !important;
    overflow-y: auto !important;
  }

  .faq-chat-col {
    height: 420px !important;
  }

  .faq-bar-header {
    padding: 16px 18px !important;
    font-size: 0.95rem !important;
  }

  /* Case Studies & Case Study Detail */
  .ui-trail-case-card {
    border-radius: 20px !important;
    margin: 0 auto 30px auto !important;
  }

  .ui-card-top-banner {
    height: 240px !important;
  }

  .ui-banner-left-info .ui-banner-title {
    font-size: 1.4rem !important;
  }

  .ui-banner-left-info .ui-banner-subtitle {
    font-size: 0.88rem !important;
  }

  .ui-banner-pill-btn {
    padding: 8px 16px !important;
    font-size: 0.8rem !important;
  }

  .ui-card-content-body {
    padding: 20px !important;
  }

  .ui-card-main-title {
    font-size: 1.4rem !important;
  }

  .ui-card-stats-row {
    padding: 14px !important;
  }

  .cs-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .cs-challenge-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .cs-solution-card {
    flex-direction: column !important;
    gap: 16px !important;
    padding: 20px !important;
  }

  .cs-sol-num-badge {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.1rem !important;
  }

  .cs-meta-chips {
    justify-content: center !important;
    gap: 8px !important;
  }

  .cs-meta-chip {
    font-size: 0.8rem !important;
    padding: 6px 12px !important;
  }

  section.scrolly-card {
    padding: 24px 18px !important;
    border-radius: 20px !important;
  }

  /* Contact Page */
  .contact-2col-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px 20px !important;
    border-radius: 20px !important;
  }

  .contact-form-card input,
  .contact-form-card textarea,
  .contact-form-card select {
    font-size: 1rem !important;
    min-height: 48px;
  }

  /* Section 1: "THE NUMBERS SPEAK INSTEAD OF ME!" Alignment */
  .impact-header-grid {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 20px !important;
  }

  .impact-header-grid > div:first-child {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .impact-header-grid h2 {
    text-align: center !important;
    font-size: 1.85rem !important;
  }

  .impact-header-grid p {
    text-align: center !important;
    margin: 8px auto 0 auto !important;
  }

  .impact-rating-card {
    text-align: center !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 16px 20px !important;
  }

  .upliv-impact-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
  }

  .upliv-impact-item {
    padding: 24px 12px !important;
  }

  .upliv-impact-val {
    font-size: 1.85rem !important;
  }

  .upliv-impact-lbl {
    font-size: 0.75rem !important;
  }

  /* Section 2: "A Certified & Professional" Alignment */
  .about-preview-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center !important;
  }

  .about-preview-grid > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center !important;
  }

  .about-preview-grid h2 {
    text-align: center !important;
    font-size: 1.85rem !important;
  }

  .about-preview-grid p {
    text-align: center !important;
  }

  .about-card-img-wrap {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    align-items: center !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .about-card-img-wrap img {
    grid-column: 1 / -1;
    justify-self: center;
    width: 230px !important;
    height: 320px !important;
    border-radius: 140px !important;
    margin-bottom: 15px !important;
  }

  .floating-stat-overlap {
    position: static !important;
    transform: none !important;
    animation: none !important;
    min-width: 0 !important;
    width: 100% !important;
    padding: 10px 12px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
  }

  /* Section 3: "5.0 ★★★★★ POWERED BY GOOGLE" Alignment */
  .testimonial-header-grid {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
  }

  .testimonial-header-grid > div {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .testimonial-header-grid h2 {
    text-align: center !important;
    font-size: 1.85rem !important;
  }

  .testimonial-header-grid p {
    text-align: center !important;
    margin: 0 auto !important;
  }

  .marquee-card {
    max-width: 280px !important;
    padding: 18px 16px !important;
  }

  .marquee-quote {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }

  /* Section 4: "FREQUENTLY ASKED QUESTIONS" Alignment */
  .faq-chat-card {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
  }

  .faq-topic-column {
    border-right: none !important;
    border-bottom: 1px solid rgba(5, 149, 18, 0.15) !important;
    padding: 20px 16px !important;
  }

  .faq-topic-item {
    padding: 12px 14px !important;
    font-size: 0.9rem !important;
    border-radius: 12px !important;
  }

  .faq-chat-window {
    height: 400px !important;
  }

  .faq-chat-header {
    padding: 12px 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
  }

  .chat-user-info {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex: 1 !important;
    min-width: 0 !important;
  }

  .chat-avatar {
    width: 38px !important;
    height: 38px !important;
    font-size: 1rem !important;
    flex-shrink: 0 !important;
  }

  .chat-user-title {
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  .chat-status-text {
    font-size: 0.72rem !important;
  }

  .chat-helper-tag {
    font-size: 0.62rem !important;
    padding: 4px 8px !important;
    letter-spacing: 0.3px !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }

  .faq-chat-body {
    padding: 16px !important;
  }

  .chat-bubble {
    font-size: 0.88rem !important;
    padding: 12px 16px !important;
  }

  /* ==============================================================================
     ALL CTA SECTIONS MOBILE RESPONSIVE OPTIMIZATION
     ============================================================================== */
  /* 1. Full-Width Dark Green CTA Banner (.upliv-cta-banner-section) */
  .upliv-cta-banner-section {
    padding: 60px 16px !important;
    text-align: center !important;
  }

  .cta-banner-badge {
    font-size: 0.72rem !important;
    padding: 5px 14px !important;
    margin-bottom: 16px !important;
    max-width: 100% !important;
  }

  .cta-banner-title {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
  }

  .cta-banner-desc {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
  }

  .cta-banner-btns {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    align-items: center !important;
  }

  .cta-banner-btns .btn,
  .cta-banner-btns a {
    width: 100% !important;
    max-width: 320px !important;
    padding: 13px 20px !important;
    font-size: 0.9rem !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* 2. Minimalist Green & Black CTA Card (.minimal-cta-section & .minimal-white-cta-card) */
  .minimal-cta-section {
    padding: 50px 0 !important;
  }

  .minimal-white-cta-card {
    padding: 42px 20px !important;
    border-radius: 24px !important;
    text-align: center !important;
  }

  .minimal-cta-badge {
    font-size: 0.72rem !important;
    padding: 5px 14px !important;
    margin-bottom: 16px !important;
  }

  .minimal-cta-title {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
  }

  .minimal-cta-desc {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
  }

  .btn-green-black {
    width: 100% !important;
    max-width: 300px !important;
    padding: 13px 20px !important;
    font-size: 0.9rem !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  /* 3. High-Glow CTA Button & Case Study CTA Box (.btn-cta-glow) */
  .btn-cta-glow {
    width: 100% !important;
    max-width: 310px !important;
    padding: 14px 22px !important;
    font-size: 0.9rem !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .btn-cta-glow .arrow-icon-btn {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.8rem !important;
  }

  /* 4. Pillar & Generic Green Buttons (.btn-pill-green, .btn-mint) */
  .btn-pill-green,
  .btn-mint {
    max-width: 100% !important;
    padding: 12px 24px !important;
    font-size: 0.9rem !important;
    justify-content: center !important;
  }

  /* 5. Upliv Partner CTA Card Mobile Alignment */
  .upliv-partner-cta-card {
    flex-direction: column !important;
    text-align: center !important;
    padding: 36px 20px !important;
    gap: 22px !important;
    border-radius: 24px !important;
  }

  .partner-cta-text-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center !important;
  }

  .partner-cta-title {
    font-size: 1.55rem !important;
    text-align: center !important;
    margin-bottom: 10px !important;
  }

  .partner-cta-desc {
    font-size: 0.9rem !important;
    text-align: center !important;
    line-height: 1.6 !important;
    margin: 0 auto !important;
  }

  .partner-cta-btn-col {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .partner-cta-btn-glow {
    width: 100% !important;
    max-width: 300px !important;
    padding: 13px 20px !important;
    font-size: 0.9rem !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  /* Multi-column grid fallbacks */
  .services-grid,
  .services-3col-grid,
  .testimonials-grid,
  .stats-grid,
  .footer-cols {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

/* ------------------------------------------------------------------------------
   3. MOBILE PHONES & SMALL SMARTPHONES (max-width: 576px)
   ------------------------------------------------------------------------------ */
@media screen and (max-width: 576px) {
  .container {
    width: 94%;
    padding: 0 4px;
  }

  .top-bar {
    display: none; /* Hide top info bar on small phones for clean layout */
  }

  .header-navbar {
    top: 8px !important;
    padding: 0 8px;
  }

  .nav-glass-container {
    padding: 8px 14px;
  }

  .nav-glass-container .btn-mint {
    display: none; /* Hide header CTA button on small phones to give logo space */
  }

  .hero-main-name-title {
    font-size: 1.75rem !important;
    line-height: 1.25;
  }

  .hero-top-hello {
    font-size: 0.82rem;
  }

  .hero-sub-location {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .hero-center-stage {
    max-width: 300px;
  }

  .hero-portrait-cutout {
    max-width: 250px;
    height: auto;
  }

  .hero-green-arch-backdrop {
    width: 210px;
    height: 235px;
  }

  .hero-floating-badge {
    padding: 5px 9px;
    font-size: 0.66rem;
    gap: 4px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }

  .badge-pos-1 {
    top: 3%;
    left: -12px;
  }

  .badge-pos-2 {
    top: 5%;
    right: -10px;
  }

  .badge-pos-3 {
    top: 36%;
    left: -32px;
  }

  .badge-pos-4 {
    top: 46%;
    right: -18px;
  }

  .badge-pos-5 {
    top: 74%;
    left: -24px;
  }

  .hero-overlapping-cta-box {
    position: absolute !important;
    bottom: -20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    flex-direction: row !important;
    padding: 4px 5px !important;
    gap: 4px !important;
  }

  .cta-btn-dark-pill,
  .cta-btn-white-pill {
    width: auto !important;
    padding: 8px 14px !important;
    font-size: 0.78rem !important;
  }

  .ui-card-top-banner {
    height: 180px !important;
  }

  .ui-banner-left-info .ui-banner-title {
    font-size: 1.15rem !important;
  }

  .ui-banner-pill-btn {
    font-size: 0.75rem !important;
    padding: 6px 12px !important;
  }

  .cs-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .services-grid,
  .services-3col-grid,
  .testimonials-grid,
  .stats-grid,
  .footer-cols {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .footer-cols {
    text-align: center;
  }

  .site-footer {
    padding: 50px 0 30px 0;
  }

  /* Font size scaling for titles */
  h1 {
    font-size: 1.85rem !important;
  }

  h2 {
    font-size: 1.5rem !important;
  }

  h3 {
    font-size: 1.25rem !important;
  }

  p {
    font-size: 0.92rem !important;
  }
}

/* ==============================================================================
   CONTACT PAGE COMPREHENSIVE RESPONSIVE STYLES
   ============================================================================== */
@media screen and (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    margin: 40px 0 !important;
  }

  .contact-hero-banner {
    min-height: auto !important;
    padding: 140px 0 50px 0 !important;
    margin-bottom: 35px !important;
  }

  .contact-hero-h1 {
    font-size: 2.5rem !important;
  }
}

@media screen and (max-width: 640px) {
  .contact-form-row {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .budget-options-wrap {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .budget-pill-label {
    width: 100% !important;
    justify-content: flex-start !important;
    padding: 10px 16px !important;
  }
}

@media screen and (max-width: 576px) {
  .contact-hero-banner {
    padding: 130px 16px 40px 16px !important;
    margin-bottom: 30px !important;
  }

  .contact-hero-h1 {
    font-size: 2.0rem !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
  }

  .contact-hero-p {
    font-size: 0.96rem !important;
    line-height: 1.65 !important;
  }

  .connect-card {
    padding: 28px 18px !important;
    border-radius: 20px !important;
  }

  .connect-avatar {
    width: 120px !important;
    height: 120px !important;
    margin-bottom: 14px !important;
  }

  .connect-name {
    font-size: 1.6rem !important;
  }

  .connect-role {
    font-size: 0.85rem !important;
    margin-bottom: 16px !important;
  }

  .connect-btns {
    max-width: 100% !important;
    width: 100% !important;
    margin-top: 20px !important;
    gap: 10px !important;
  }

  .connect-btn {
    padding: 12px 18px !important;
    font-size: 0.88rem !important;
  }

  .form-box {
    padding: 24px 18px !important;
    border-radius: 20px !important;
  }

  .form-box h3 {
    font-size: 1.35rem !important;
    margin-bottom: 18px !important;
    text-align: center !important;
  }

  .form-field {
    margin-bottom: 16px !important;
  }

  .form-field label {
    font-size: 0.85rem !important;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 10px 14px !important;
    font-size: 0.9rem !important;
    border-radius: 10px !important;
  }
}



