/* ==========================================================================
   Ling Solutions - Premium Award-Winning Modern Web Application Design System
   Theme: LING Icon Teal-Green (#3A8A80 / #429C91) & Crisp White (#FFFFFF)
   ========================================================================== */

:root {
  /* Core Color Palette - LING Signature Green & Mint/Emerald Accents */
  --primary-color: #3A8A80;
  --primary-dark: #2A665E;
  --primary-light: #429C91;
  --primary-glow: rgba(58, 138, 128, 0.25);

  --accent-color: #10B981;
  --accent-mint: #00D084;
  --accent-light: #E6F7F5;
  --accent-glow: rgba(0, 208, 132, 0.35);

  /* Neutrals & Backgrounds */
  --bg-color: #F8FAFB;
  --bg-card: #FFFFFF;
  --bg-dark: #0B1715;
  --bg-dark-card: #122623;
  --border-color: #E2E8F0;
  --border-hover: #429C91;

  /* Typography */
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #F8FAFC;
  --font-heading: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevation & Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 20px -4px rgba(15, 23, 42, 0.08), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 24px 36px -8px rgba(15, 23, 42, 0.12), 0 6px 12px -4px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 0 30px rgba(58, 138, 128, 0.35);

  /* Radius Tokens */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Motion & Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Base & Resets
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

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

.section-padding {
  padding: 100px 0;
}

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

.gradient-text {
  background: linear-gradient(135deg, #00D084 0%, #3A8A80 50%, #429C91 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Typography & Badges
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  letter-spacing: -0.025em;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--accent-light);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(58, 138, 128, 0.2);
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-mint);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 rgba(0, 208, 132, 0.6);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 208, 132, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 208, 132, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 208, 132, 0);
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  box-shadow: 0 8px 22px rgba(58, 138, 128, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(58, 138, 128, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-cta {
  background: #FFFFFF;
  color: var(--primary-dark);
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.btn-cta:hover {
  background: #F1F5F9;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.btn-sm {
  padding: 9px 22px;
  font-size: 0.875rem;
}

/* ==========================================================================
   Header Component & Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding: 16px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  padding: 12px 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.brand-logo:hover {
  transform: scale(1.03);
}

.brand-logo img {
  height: 38px;
  width: auto;
}

.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-mint));
  transition: width 0.3s var(--ease-out);
  border-radius: var(--radius-full);
}

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

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================================================
   Award-Winning Split Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(11, 23, 21, 0.92) 0%, rgba(18, 38, 35, 0.96) 100%), url('../assets/images/hero_bg.jpg') center/cover no-repeat;
  color: white;
  padding: 120px 0 100px 0;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text-col {
  text-align: left;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-mint);
  border-color: rgba(0, 208, 132, 0.3);
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(248, 250, 252, 0.85);
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-bottom: 50px;
}

/* Metrics Row */
.hero-metrics-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-mint);
}

.metric-label {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.7);
}

.metric-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Glass Dashboard Card */
.hero-visual-col {
  perspective: 1000px;
}

.hero-glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), var(--shadow-glow);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s var(--ease-out);
}

.hero-glass-card:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-6px);
}

.card-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 22px;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-dots .dot.red {
  background-color: #FF5F56;
}

.window-dots .dot.yellow {
  background-color: #FFBD2E;
}

.window-dots .dot.green {
  background-color: #27C93F;
}

.card-title-tag {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-heading);
  font-weight: 600;
}

.stats-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(180deg, var(--primary-color) 0%, rgba(58, 138, 128, 0.6) 70%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.stat-box:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-mint);
}

.stat-box:hover::before {
  opacity: 1;
}

.stat-title {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.stat-value {
  font-size: 1rem;
  font-weight: 700;

}

.stat-value.text-green {
  color: var(--accent-mint);
}

.status-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.status-pill.green {
  background: rgba(0, 208, 132, 0.2);
  color: var(--accent-mint);
}

.progress-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 4px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-mint));
  border-radius: var(--radius-full);
}

.feature-checklist-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   Services Section Grid & Cards
   ========================================================================== */

.section-header {
  margin-bottom: 54px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
}

.section-header .section-sub-desc {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 620px;
  margin: 14px auto 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 44px 34px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

.card-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--accent-light);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(180deg, var(--primary-color) 0%, rgba(58, 138, 128, 0.6) 70%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  pointer-events: none;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--primary-light);
}

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

.service-card:hover h3 {
  color: var(--primary-color);
}

.service-icon-wrapper {
  width: 76px;
  height: 76px;
  background: var(--primary-color);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 16px;
  box-shadow: 0 6px 16px rgba(58, 138, 128, 0.25);
  transition: var(--transition);
}

.service-icon-wrapper img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: none !important;
}

.service-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
  transition: var(--transition);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.975rem;
  margin-bottom: 22px;
  line-height: 1.65;
}

.tag-group {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.pill-tag {
  background: var(--accent-light);
  color: var(--primary-dark);
  font-size: 0.775rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.feature-list li {
  font-size: 0.925rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: var(--accent-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   Process Steps Section
   ========================================================================== */

.process-section {
  background: #F1F5F9;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.process-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(180deg, var(--primary-color) 0%, rgba(58, 138, 128, 0.6) 70%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  pointer-events: none;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

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

.process-card:hover::before {
  opacity: 1;
}

.process-card:hover h4 {
  color: var(--primary-color);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(42, 102, 94, 0.25);
}

.process-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  transition: var(--transition);
}

.process-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   Mission & Banner Quote
   ========================================================================== */

.banner-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #142B27 100%);
  color: white;
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-wrapper {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  font-size: 6rem;
  font-family: serif;
  color: var(--accent-mint);
  opacity: 0.3;
  line-height: 0;
  display: block;
  margin-bottom: 20px;
}

.mission-quote {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: #F8FAFC;
  margin-bottom: 24px;
}

.quote-author {
  font-size: 1rem;
  color: var(--accent-mint);
  font-weight: 600;
  letter-spacing: 1px;

}

/* ==========================================================================
   Partners Section
   ========================================================================== */

.partners-section {
  background-color: var(--bg-color);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.partner-card {
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(180deg, var(--primary-color) 0%, rgba(58, 138, 128, 0.6) 70%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  pointer-events: none;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.partner-card:hover::before {
  opacity: 1;
}

.client-type {
  font-size: 0.775rem;
  color: var(--primary-dark);
  font-weight: 700;
  background: var(--accent-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  transition: var(--transition);
}

.partner-card:hover .client-type {
  background: var(--primary-color);
  color: #FFFFFF;
}

.logo-box {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 18px 0;
  width: 100%;
}

.logo-box img {
  max-height: 65px;
  max-width: 180px;
  object-fit: contain;
  transition: var(--transition);
}

.partner-card:hover .logo-box img {
  transform: scale(1.05);
}

.partner-card h4 {
  font-size: 1.025rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-main);
  transition: var(--transition);
}

.partner-card:hover h4 {
  color: var(--primary-color);
}

/* ==========================================================================
   Call To Action (CTA) Section
   ========================================================================== */

.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 60%, var(--primary-light) 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-section h2 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
}

/* ==========================================================================
   Footer Component
   ========================================================================== */

.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
  height: 42px;
  width: auto;
}

.company-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.reg-num {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: normal;
}

.company-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-heading {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--accent-mint);
  border-radius: var(--radius-full);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.contact-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.contact-info a {
  color: white;
  font-weight: 500;
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--accent-mint);
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-color);
  border-color: var(--accent-mint);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(58, 138, 128, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--accent-mint);
}

/* Floating WhatsApp Action Button with Pulse Glow */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition);
  animation: pulseGlow 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulseGlow {
  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);
  }
}

/* ==========================================================================
   Privacy Policy Styled Enclosure (NO TEXT MODIFICATION)
   ========================================================================== */

.privacy-container {
  background: var(--bg-card);
  padding: 60px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-top: 50px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.privacy-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(180deg, var(--primary-color) 0%, rgba(58, 138, 128, 0.6) 70%, transparent 100%);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.privacy-container h1 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-main);
}

.privacy-container h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-dark);
  border-bottom: 2px solid var(--accent-light);
  padding-bottom: 10px;
}

.privacy-container h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 14px;
  color: var(--text-main);
}

.privacy-container h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 22px;
  margin-bottom: 10px;
  color: var(--text-main);
}

.privacy-container p {
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.privacy-container ul {
  margin-bottom: 24px;
  padding-left: 24px;
  list-style-type: disc;
}

.privacy-container li {
  margin-bottom: 10px;
  color: var(--text-muted);
  line-height: 1.7;
}

.privacy-container a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  transition: var(--transition);
}

.privacy-container a:hover {
  color: var(--accent-mint);
}

/* ==========================================================================
   Animations & Scroll Reveal Effects
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-text-col {
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-metrics-row {
    justify-content: center;
  }

  .hero-glass-card {
    transform: none;
    max-width: 550px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    display: none;
    border-bottom: 1px solid var(--border-color);
  }

  .main-nav.active {
    display: block;
    animation: fadeIn 0.3s var(--ease-out);
  }

  .main-nav .nav-list {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-metrics-row {
    flex-direction: column;
    gap: 16px;
  }

  .metric-divider {
    display: none;
  }

  .cta-section h2 {
    font-size: 2.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .privacy-container {
    padding: 32px 20px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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