/* =============================================================
   UNS GLOBAL ACCOUNTING NETWORK — STYLESHEET
   ============================================================= */

:root {
  --primary: #003b43;
  --primary-rgb: 0, 59, 67;
  --primary-light: #0a5a63;
  --secondary: #00967d;
  --secondary-rgb: 0, 150, 125;
  --secondary-light: #29c4a6;

  --ink: #0c2126;
  --muted: #4d6a6e;
  --surface: #f5faf9;
  --surface-alt: #eef7f5;
  --white: #ffffff;

  --font-heading: 'Lexend', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;

  --shadow-soft: 0 20px 60px -20px rgba(var(--primary-rgb), 0.35);
  --shadow-hard: 0 30px 80px -25px rgba(var(--primary-rgb), 0.55);

  --section-py: 120px;
  --transition-base: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== Reset / Base ===== */
* { box-sizing: border-box; }

html {
  scroll-behavior: auto;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

section, header { position: relative; z-index: 1; }

::selection {
  background: var(--secondary);
  color: var(--white);
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary), var(--secondary));
  border-radius: 10px;
}

/* ===== Custom Cursor ===== */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  display: none;
  will-change: transform;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: var(--secondary);
  border-radius: 50%;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 1.5px solid rgba(var(--secondary-rgb), 0.6);
  border-radius: 50%;
  background: rgba(var(--secondary-rgb), 0.06);
  backdrop-filter: blur(2px);
  transition: width 0.3s ease, height 0.3s ease, margin 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

html.custom-cursor-active .cursor-dot,
html.custom-cursor-active .cursor-ring {
  display: block;
}

html.custom-cursor-active,
html.custom-cursor-active a,
html.custom-cursor-active button,
html.custom-cursor-active input,
html.custom-cursor-active select,
html.custom-cursor-active textarea,
html.custom-cursor-active .tilt-card {
  cursor: none;
}

html.cursor-hover .cursor-ring {
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  background: rgba(var(--secondary-rgb), 0.15);
  border-color: var(--secondary);
}

html.cursor-down .cursor-ring {
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
}

/* ===== Ambient Background Blobs ===== */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}

.blob-1 {
  width: 480px;
  height: 480px;
  top: -120px;
  left: -120px;
  background: var(--secondary);
}

.blob-2 {
  width: 560px;
  height: 560px;
  top: 40%;
  right: -200px;
  background: var(--primary-light);
  opacity: 0.25;
}

.blob-3 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: 30%;
  background: var(--secondary-light);
  opacity: 0.2;
}

/* ===== Glassmorphism Utilities ===== */
.glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ===== Navbar — floating rounded glass header ===== */
.glass-nav {
  padding: 18px 0 0;
  background: transparent;
  transition: all var(--transition-base);
  z-index: 1000;
}

.glass-nav .container {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  box-shadow: 0 15px 45px -18px rgba(0, 0, 0, 0.45);
  transition: all var(--transition-base);
}

.glass-nav.scrolled {
  padding-top: 12px;
}

.glass-nav.scrolled .container {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 15px 40px -15px rgba(var(--primary-rgb), 0.3);
}

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

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 18px rgba(var(--primary-rgb), 0.3);
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  transition: color var(--transition-base);
}

.brand-text small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.glass-nav.scrolled .brand-text { color: var(--primary); }
.glass-nav.scrolled .brand-text small { color: var(--muted); }

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 16px !important;
  position: relative;
  transition: color var(--transition-base);
}

.glass-nav.scrolled .nav-link { color: var(--ink); }

.nav-link::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

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

.nav-link:hover { color: var(--secondary-light); }
.glass-nav.scrolled .nav-link:hover { color: var(--secondary); }

.btn-cta-nav {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 8px 24px -8px rgba(var(--secondary-rgb), 0.6);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(var(--secondary-rgb), 0.75);
  color: var(--white) !important;
}

.navbar-toggler {
  border: none;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
}

.navbar-toggler:focus { box-shadow: none; }

.toggler-bar {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition-base);
}

.glass-nav.scrolled .toggler-bar { background: var(--primary); }

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  background: url('../assets/images/hero-bg.webp') center right / cover no-repeat, var(--primary);
  overflow: hidden;
  padding-top: 30px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(5, 87, 95, 0.88) 0%, rgba(0, 59, 67, 0.92) 45%, rgba(0, 31, 36, 0.96) 100%);
  z-index: 0;
}

.hero-section > .container,
.hero-section > .scroll-indicator {
  position: relative;
  z-index: 1;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.badge-pill i { color: var(--secondary-light); }

.hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.3rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--secondary-light), #7be9d3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-dark {
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin-bottom: 34px;
  line-height: 1.7;
}

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

.btn-primary-glow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 35px -10px rgba(var(--secondary-rgb), 0.6);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.btn-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px -10px rgba(var(--secondary-rgb), 0.8);
  color: var(--white);
}

.btn-outline-glass {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-base);
}

.btn-outline-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-glass i { color: #25d366; }

.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.stat-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
}

.stat-chip i { color: var(--secondary-light); }

/* ===== Hero Visual ===== */
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 90px -20px rgba(var(--secondary-rgb), 0.55);
}

.hero-orb::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1.5px dashed rgba(var(--secondary-rgb), 0.45);
  animation: spin 26s linear infinite;
}

.hero-orb-img {
  width: 74%;
  border-radius: 50%;
  box-shadow: var(--shadow-hard);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Positioned on a circular orbit around .hero-orb by initOrbitFloaters() in main.js */
.glass-card.floater {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(16px) saturate(160%);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.glass-card.floater i {
  color: var(--secondary-light);
  font-size: 1.1rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--secondary-light);
  border-radius: 2px;
  animation: scrollDot 1.6s ease infinite;
}

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

/* ===== Section Heading ===== */
.section-heading {
  max-width: 700px;
  margin: 0 auto 30px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary);
  background: rgba(var(--secondary-rgb), 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ===== Consultation / Lead Form Section ===== */
.consultation-section {
  padding: var(--section-py) 0;
  background: url('../assets/images/free-consultation-bg.webp') center / cover no-repeat, var(--surface);
}

.consultation-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.glass-form {
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 44px);
  box-shadow: var(--shadow-soft);
}

.glass-form .form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.glass-form .form-label i {
  color: var(--secondary);
  font-size: 0.95rem;
}

.req { color: var(--secondary); }
.opt { color: var(--muted); font-weight: 400; font-size: 0.8rem; }

.glass-form .form-control,
.glass-form .form-select {
  font-family: var(--font-body);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all var(--transition-base);
}

.glass-form .form-control:focus,
.glass-form .form-select:focus {
  background: var(--white);
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(var(--secondary-rgb), 0.15);
}

.glass-form .form-control::placeholder { color: #97acae; }

.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--secondary);
  background: rgba(var(--secondary-rgb), 0.08);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  width: 100%;
}

.btn-submit-whatsapp {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  background: linear-gradient(135deg, #1ebe72, #25d366);
  border: none;
  padding: 17px 36px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 40px -12px rgba(37, 211, 102, 0.55);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.btn-submit-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px -12px rgba(37, 211, 102, 0.7);
  color: var(--white);
}

.btn-submit-whatsapp:active { transform: translateY(0); }

.btn-submit-lg {
  width: 100%;
  max-width: 620px;
  justify-content: space-between;
  padding: 8px 8px 8px 8px;
}

.btn-submit-text {
  flex: 1;
  text-align: center;
  padding: 0 8px;
}

.btn-icon-circle {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.2);
}

.btn-icon-circle-light {
  background: var(--white);
  color: var(--secondary);
}

.response-time-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ===== Trust Panel (left card, consultation section) ===== */
.trust-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow-soft);
}

.trust-panel-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.trust-panel-heading {
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
}

.trust-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(var(--secondary-rgb), 0.12);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.trust-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.trust-list span {
  font-size: 0.8rem;
  color: var(--muted);
}

.trust-rating-card {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(var(--secondary-rgb), 0.08);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}

.trust-rating-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.trust-rating-badge i { font-size: 0.75rem; }

.trust-rating-stars i {
  color: #f5b400;
  font-size: 0.85rem;
  margin-right: 2px;
}

.trust-rating-stars small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

/* ===== Trust Badges Row (below form, consultation section) ===== */
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badge {
  flex: 1 1 140px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(var(--secondary-rgb), 0.07);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.trust-badge i {
  color: var(--secondary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--primary);
}

.trust-badge span {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ===== Services Section ===== */
.services-section {
  position: relative;
  padding: var(--section-py) 0;
  background: url('../assets/images/our-expertise-bg.webp') center / cover no-repeat, var(--surface-alt);
  overflow: hidden;
}

.services-section::before,
.services-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(80px, 14vw, 180px);
  pointer-events: none;
  z-index: 1;
}

.services-section::before {
  top: 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.services-section::after {
  bottom: 0;
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.services-section > .container {
  position: relative;
  z-index: 2;
}

.service-card {
  position: relative;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card:hover {
  box-shadow: var(--shadow-soft);
  border-color: rgba(var(--secondary-rgb), 0.4);
}

.service-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(var(--secondary-rgb), 0.16));
  margin-bottom: 22px;
  padding: 12px;
  transform: translateZ(30px);
}

.service-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  transform: translateZ(20px);
}

.service-card p {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  transform: translateZ(15px);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--secondary);
  transform: translateZ(20px);
  transition: gap var(--transition-base), color var(--transition-base);
}

.service-link i { transition: transform var(--transition-base); }
.service-card:hover .service-link { gap: 13px; color: var(--primary); }
.service-card:hover .service-link i { transform: translateX(2px); }

.services-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 10px 12px;
  box-shadow: var(--shadow-soft);
}

.services-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  padding: 10px 28px;
  border-right: 1px solid rgba(var(--primary-rgb), 0.12);
}

.services-trust-item:last-child { border-right: none; }
.services-trust-item i { color: var(--secondary); font-size: 1rem; }

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 20px 0 100px;
  background: #fff;
}

.cta-banner-inner {
  background: linear-gradient(120deg, var(--primary), #075a63 60%, var(--secondary));
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow-hard);
  position: relative;
  overflow: hidden;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255,255,255,0.15), transparent 60%);
}

.cta-banner-inner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  margin-bottom: 8px;
  position: relative;
}

.cta-banner-inner p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  position: relative;
}

.cta-banner-inner .btn-primary-glow {
  position: relative;
  flex-shrink: 0;
}

/* ===== Footer ===== */
.site-footer {
  background: #001f24;
  padding: 90px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.footer-brand span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-brand small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary-light);
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

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

.footer-links li,
.footer-contact li {
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-links a {
  transition: color var(--transition-base), padding-left var(--transition-base);
}

.footer-links a:hover {
  color: var(--secondary-light);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--secondary-light);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding: 26px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1ebe72, #25d366);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 15px 35px -8px rgba(37, 211, 102, 0.6);
  z-index: 900;
  animation: pulseWA 2.4s ease infinite;
}

@keyframes pulseWA {
  0%, 100% { box-shadow: 0 15px 35px -8px rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 15px 35px -8px rgba(37, 211, 102, 0.9), 0 0 0 10px rgba(37, 211, 102, 0.12); }
}

/* ===== Back To Top ===== */
.back-to-top {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--secondary);
  color: var(--white);
}

/* ===== Scroll Reveal base state (JS/GSAP controls the animation) ===== */
[data-reveal],
[data-reveal-card] {
  visibility: visible;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  :root { --section-py: 90px; }

  .glass-nav .navbar-collapse {
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow-soft);
  }

  .glass-nav .nav-link { color: var(--ink) !important; }
  .glass-nav .btn-cta-nav { display: inline-flex; margin-top: 10px; }

  .hero-visual { height: 420px; margin-top: 40px; }
  .hero-orb { width: 200px; height: 200px; }

  .glass-card.floater {
    font-size: 0.75rem;
    padding: 10px 16px;
  }
}

@media (max-width: 767.98px) {
  :root { --section-py: 70px; }

  .cta-banner-inner { flex-direction: column; text-align: center; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 18px; right: 18px; }
  .back-to-top { width: 42px; height: 42px; bottom: 18px; left: 18px; }

  .services-trust-row {
    border-radius: var(--radius-md);
    justify-content: center;
  }

  .services-trust-item {
    flex: 1 1 45%;
    justify-content: center;
    border-right: none;
    padding: 10px 14px;
    font-size: 0.82rem;
  }
  .hero-section{
    padding:170px 0px 50px 0px !important;
  }
  .scroll-indicator{
    bottom:-30px 
  }
}

@media (max-width: 575.98px) {
  .glass-form { border-radius: var(--radius-md); }
}

@media (hover: none) and (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}


@media (max-width: 1500px){
  .hero-title {
    font-size: clamp(2.2rem, 4.2vw, 2.5rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 22px;
}
.section-heading {
    max-width: 800px;
    margin: 0 auto 20px;
}
.section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 16px;
}
}