/* ================================
   MCS (MM2H) Sdn Bhd Website Styles
   Corporate Cyan/Turquoise Theme
   ================================ */

:root {
  /* MCS Corporate Color Palette - Cyan/Turquoise Theme */
  --primary-cyan: #00B8D4;
  --primary-dark: #1A1A1A;
  --primary-light-cyan: #E0F7FA;
  --secondary-cyan: #00ACC1;
  --accent-blue: #0097A7;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --white: #FFFFFF;
  --bg-light: #F5FEFF;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

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

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-dark);
  margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
}

a {
  color: var(--primary-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-blue);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Header & Navigation */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: var(--font-heading);
}

.logo-icon {
  width: 70px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap; /* Prevent text wrapping */
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-cyan);
  background: var(--primary-light-cyan);
}

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-icon {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text-dark);
  font-size: 0.9375rem;
  border-radius: 0;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: var(--primary-light-cyan);
  color: var(--primary-cyan);
  padding-left: 1.5rem;
}

.lang-switcher {
  display: flex;
  gap: 0.35rem;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--primary-light-cyan);
  align-items: center;
}

.lang-btn {
  padding: 0.4rem 0.9rem;
  border: 2px solid var(--primary-light-cyan);
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 50px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.lang-btn:hover {
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
}

.lang-btn.active {
  background: var(--primary-cyan);
  color: var(--white);
  border-color: var(--primary-cyan);
}

.nav-cta-btn {
  padding: 0.5rem 1.25rem;
  background: var(--primary-cyan);
  color: var(--white) !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-left: 1rem;
  white-space: nowrap;
}

.nav-cta-btn:hover {
  background: var(--primary-dark-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 139, 156, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-dark);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-light-cyan) 0%, var(--white) 100%);
  overflow: hidden;
}

/* Left side - Family image */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: url('https://sspark.genspark.ai/cfimages?u1=VcZPRnH4q5MyZxWOXgsncnlVW5SADUw8tV8aLKX5i%2BEI5QCV75oZw3qOSWQVU3a4xrkGAMRAaHQMFyzJv2oA8cf5LLOVEEFoWe5Xl1csCgi97g%3D%3D&u2=6%2FIF1CxYK60N321B&width=2560');
  background-size: cover;
  background-position: center right;
  opacity: 0.25;
  z-index: 0;
}

/* Right side - KLCC image */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1596422846543-75c6fc197f07?q=80&w=2000');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-subtitle {
  color: var(--primary-cyan);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-sm);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 1rem;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-cyan);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
}

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

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1ea952;
}

.btn-wechat {
  background: #09B83E;
  color: var(--white);
}

.btn-wechat:hover {
  background: #078c30;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

/* CTA Bar */
.cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 16px rgba(44, 36, 22, 0.1);
  padding: var(--spacing-sm) var(--spacing-md);
  z-index: 999;
  display: none;
}

.cta-bar.visible {
  display: block;
}

.cta-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
}

.cta-bar-text {
  flex: 1;
}

.cta-bar-text h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.cta-bar-text p {
  font-size: 0.875rem;
  margin: 0;
}

.cta-bar-actions {
  display: flex;
  gap: var(--spacing-sm);
}

.cta-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-icon-btn:hover {
  transform: scale(1.1);
}

/* Sections */
.section {
  padding: var(--spacing-xl) 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.section-subtitle {
  color: var(--primary-cyan);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-xs);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-sm);
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-light);
}

/* Cards */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light-cyan), var(--white));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-cyan);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.card-description {
  color: var(--text-light);
  line-height: 1.7;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Tier Cards */
.tier-card {
  background: var(--white);
  border-radius: 16px;
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

.tier-card.featured {
  border-color: var(--primary-cyan);
  background: linear-gradient(to bottom, var(--white) 0%, var(--primary-light-cyan) 100%);
}

.tier-badge {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: var(--primary-cyan);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tier-name {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-xs);
  color: var(--primary-dark);
}

.tier-visa-duration {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-md);
}

.tier-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-cyan);
  margin-bottom: var(--spacing-xs);
}

.tier-price-currency {
  font-size: 1.25rem;
  font-weight: 600;
}

.tier-price-label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

.tier-features {
  list-style: none;
  margin-bottom: var(--spacing-md);
}

.tier-features li {
  padding: var(--spacing-xs) 0;
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  color: var(--text-dark);
}

.tier-features li::before {
  content: '✓';
  color: var(--primary-cyan);
  font-weight: 700;
  flex-shrink: 0;
}

/* Stats Section - Original (Legacy) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  text-align: center;
}

.stat-item {
  padding: var(--spacing-md);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-cyan);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  color: var(--text-light);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Stats Section - New Enhanced Design */
.stats-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 0 auto;
  max-width: 1200px;
}

.stat-card-new {
  background: #FFFFFF;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #E8DCC8;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.05) 0%, rgba(201, 169, 98, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.stat-card-new:hover::before {
  opacity: 1;
}

.stat-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(201, 169, 98, 0.15);
  border-color: var(--primary-gold);
}

.stat-card-new > * {
  position: relative;
  z-index: 1;
}

.stat-icon-new {
  font-size: 48px;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.stat-card-new:hover .stat-icon-new {
  transform: scale(1.1) rotate(5deg);
}

.stat-icon-new i {
  transition: color 0.3s ease;
}

/* Individual icon colors */
.stat-card-new:nth-child(1) .stat-icon-new i {
  color: #E74C3C; /* Red for focus/target */
}

.stat-card-new:nth-child(2) .stat-icon-new i {
  color: #3498DB; /* Blue for 24/7 support */
}

.stat-card-new:nth-child(3) .stat-icon-new i {
  color: #2ECC71; /* Green for dedicated support/verified */
}

.stat-card-new:nth-child(4) .stat-icon-new i {
  color: #9B59B6; /* Purple for consultation/communication */
}

/* Hover effect - brighten icons */
.stat-card-new:nth-child(1):hover .stat-icon-new i {
  color: #C0392B; /* Darker red on hover */
}

.stat-card-new:nth-child(2):hover .stat-icon-new i {
  color: #2980B9; /* Darker blue on hover */
}

.stat-card-new:nth-child(3):hover .stat-icon-new i {
  color: #27AE60; /* Darker green on hover */
}

.stat-card-new:nth-child(4):hover .stat-icon-new i {
  color: #8E44AD; /* Darker purple on hover */
}

.stat-number-new {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  line-height: 1;
  letter-spacing: -1px;
  font-family: var(--font-heading);
}

.stat-title-new {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.stat-description-new {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.5;
  font-style: italic;
  padding: 0 0.625rem;
}

/* Animation on page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-card-new {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.stat-card-new:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-card-new:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-card-new:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-card-new:nth-child(4) {
  animation-delay: 0.4s;
}

/* Responsive Design for New Stats */
@media (max-width: 992px) {
  .stats-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-number-new {
    font-size: 2.25rem;
  }

  .stat-icon-new {
    font-size: 42px;
  }

  .stat-icon-new i {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .stats-grid-new {
    gap: 1.25rem;
  }

  .stat-card-new {
    padding: 2rem 1.25rem;
  }

  .stat-number-new {
    font-size: 2rem;
  }

  .stat-icon-new {
    font-size: 38px;
  }

  .stat-icon-new i {
    font-size: 38px;
  }

  .stat-title-new {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }

  .stat-description-new {
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .stats-grid-new {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stat-card-new {
    padding: 2.25rem 1.5rem;
  }

  .stat-number-new {
    font-size: 2.375rem;
  }

  .stat-icon-new {
    font-size: 44px;
  }

  .stat-icon-new i {
    font-size: 44px;
  }

  .stat-title-new {
    font-size: 0.8125rem;
  }

  .stat-description-new {
    font-size: 0.9375rem;
    padding: 0 0.3125rem;
  }
}

/* Process Steps */
.process-steps {
  position: relative;
  padding: var(--spacing-md) 0;
}

.process-step {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.step-content {
  flex: 1;
  padding-top: var(--spacing-xs);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
}

.step-description {
  color: var(--text-light);
}

/* FAQ */
.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--spacing-md);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-cyan);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--primary-cyan);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 var(--spacing-md) var(--spacing-md);
  color: var(--text-light);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

/* Forms */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--text-dark);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--white);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  margin-right: var(--spacing-xs);
}

/* Footer */
footer {
  background: #1a1a1a;
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer {
  background: #1a1a1a;
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.footer-section h3 {
  color: var(--primary-cyan);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--primary-cyan);
  padding-left: 4px;
  transition: all 0.3s ease;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links li a {
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(31, 190, 195, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-cyan);
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 1px solid rgba(31, 190, 195, 0.2);
}

.social-icon:hover {
  background: var(--primary-cyan);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--primary-cyan);
  box-shadow: 0 4px 12px rgba(31, 190, 195, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom a {
  color: var(--primary-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 0 4px;
}

.footer-bottom a:hover {
  color: #17A2B8;
  text-decoration: underline;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.8;
}

.footer-compliance {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(31, 190, 195, 0.08);
  border-radius: 8px;
  border-left: 3px solid var(--primary-cyan);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-compliance p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.9rem;
}

.footer-disclaimer {
  margin-top: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-disclaimer strong {
  color: var(--primary-cyan);
  font-weight: 600;
}

/* Chatbot Widget */
.chatbot-widget {
  position: fixed;
  bottom: 80px;
  right: var(--spacing-md);
  z-index: 998;
}

.chatbot-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.chatbot-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(201, 169, 98, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: left 0.3s ease;
    align-items: flex-start;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .lang-switcher {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
  }
  
  .hero {
    min-height: 70vh;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .cta-bar-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-bar-actions {
    width: 100%;
    justify-content: center;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    font-size: 14px;
  }
  
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .chatbot-widget {
    bottom: 90px;
    right: var(--spacing-sm);
  }
  
  .chatbot-btn {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-cyan { color: var(--primary-cyan); }
.bg-light-cyan { background: var(--primary-light-cyan); }
.bg-white { background: var(--white); }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
  .header,
  .cta-bar,
  .chatbot-widget,
  .btn {
    display: none;
  }
}

/* =================================
   NEW ADDITIONS - Sales Deck Integration
   ================================= */

/* Stats Hero Banner */
.stats-hero-banner {
  background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-blue) 100%);
  padding: 3rem 0;
  box-shadow: 0 4px 20px rgba(0, 184, 212, 0.2);
}

.stats-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stats-hero-item {
  text-align: center;
}

.stats-hero-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.stats-hero-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stats-hero-divider {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
}

/* Lifestyle Pillars Section */
.lifestyle-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pillar-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 184, 212, 0.15);
  border-color: var(--primary-cyan);
}

.pillar-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light-cyan), rgba(0, 184, 212, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  color: var(--primary-cyan);
}

.pillar-title {
  font-size: 1.75rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.pillar-description {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.0625rem;
}

/* Why Choose Stats - Homepage Version */
.why-choose-stats {
  background: linear-gradient(135deg, rgba(0, 184, 212, 0.08), rgba(0, 172, 193, 0.05));
  padding: 1.5rem 2rem;
  border-radius: 12px;
  border: 2px solid var(--primary-cyan);
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.why-stat-item {
  text-align: center;
  padding: 0 1rem;
}

.why-stat-item strong {
  color: var(--primary-cyan);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.why-stat-divider {
  color: var(--primary-cyan);
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.4;
}

/* Why Choose Stats - About Page Version */
.why-choose-stats-about {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.why-stat-item-about {
  text-align: center;
}

.why-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.why-stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.why-stat-divider-about {
  width: 2px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Styles for New Components */
@media (max-width: 992px) {
  .stats-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stats-hero-divider {
    width: 60px;
    height: 2px;
    margin: 0 auto;
  }
  
  .lifestyle-pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-choose-stats-about {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .why-stat-divider-about {
    width: 60px;
    height: 2px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .stats-hero-number {
    font-size: 2.75rem;
  }
  
  .stats-hero-label {
    font-size: 0.875rem;
  }
  
  .pillar-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  
  .pillar-title {
    font-size: 1.5rem;
  }
  
  .why-choose-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .why-stat-divider {
    display: none;
  }
  
  .why-stat-number {
    font-size: 2rem;
  }
  
  /* Footer responsive */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-section:first-child {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-compliance,
  .footer-disclaimer {
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .stats-hero-banner {
    padding: 2rem 0;
  }
  
  .stats-hero-number {
    font-size: 2.25rem;
  }
  
  .pillar-card {
    padding: 2rem 1.5rem;
  }
  
  .why-stat-item strong {
    font-size: 1rem;
  }
}