/* ============================================
   BNB INVESTMENTS - MODERN UI DESIGN SYSTEM
   ============================================ */

/* CSS Custom Properties (Design Tokens) */
:root {
  /* Primary Colors */
  --primary-gradient-start: #0d9488;
  --primary-gradient-end: #14b8a6;
  --primary-accent: #10B981;

  /* Secondary Colors */
  --secondary-gradient-start: #1e40af;
  --secondary-gradient-end: #3b82f6;

  /* Background Colors (Light Theme) */
  --bg-dark-primary: #f8fafc;
  --bg-dark-secondary: #ffffff;
  --bg-dark-tertiary: #f1f5f9;

  /* Text Colors (Light Theme) */
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;

  /* Glassmorphism (Light Theme) */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-hover: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-border-hover: rgba(0, 0, 0, 0.15);

  /* Shadows (Light Theme) */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 10px 30px rgba(16, 185, 129, 0.2);
  --shadow-glow-sm: 0 5px 15px rgba(16, 185, 129, 0.1);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 20px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-dark-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Animated Background Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(13, 148, 136, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  color: var(--primary-accent) !important;
  font-weight: 600;
}

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

.section {
  padding: var(--section-padding);
  position: relative;
}

/* ============================================
   GLASSMORPHISM CARDS
   ============================================ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-normal);
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  box-shadow: var(--shadow-glow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-glow);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--glass-bg);
  border-color: var(--primary-accent);
  color: var(--primary-accent);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0 12px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  /* border-bottom removed */
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  padding: 12px 0;
  background: transparent;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-brand img {
  height: 110px;
  width: auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(13, 148, 136, 0.08) 0%, transparent 60%);
  animation: heroGlow 15s ease-in-out infinite;
}

@keyframes heroGlow {

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

  50% {
    transform: translate(10%, 10%) scale(1.1);
    opacity: 0.8;
  }
}

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

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ============================================
   TRUST STATS SECTION
   ============================================ */
.trust-section {
  padding: 40px 0 30px;
  position: relative;
}

.trust-heading {
  text-align: center;
  margin-bottom: 50px;
}

.trust-heading h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.trust-heading .highlighter {
  color: var(--primary-accent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-accent);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-description {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: 30px 0 20px;
}

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

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  border-radius: var(--radius-full);
}

.feature-icon img,
.feature-icon i {
  width: auto;
  height: auto;
  font-size: 28px;
  color: white;
  filter: brightness(10);
}

.feature-icon i {
  filter: none;
  /* FontAwesome icons are already white/colored by color property */
}

.feature-card h4 {
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============================================
   SIP CALCULATOR SECTION
   ============================================ */
.calculator-section {
  padding: 30px 0 80px;
}

.calculator-container {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.calculator-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 40px;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 900px) {
  .calculator-grid {
    grid-template-columns: 1fr;
  }
}

/* Form Styles */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-dark-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all var(--transition-normal);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input.shake {
  animation: shake 0.5s ease-in-out;
  border-color: #ef4444;
}

.form-input:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

@keyframes shake {

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

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

.form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-dark-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
}

.form-select:focus {
  outline: none;
  border-color: var(--primary-accent);
}

.form-select option {
  background: #ffffff;
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

/* Range Slider */
.range-container {
  margin-bottom: 24px;
}

.range-slider {
  width: 100%;
  height: 8px;
  background: var(--bg-dark-tertiary);
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
  margin: 16px 0;
}

.range-slider::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
  transition: all var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.6);
}

.range-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
}

.range-value {
  text-align: center;
  color: var(--primary-accent);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Chart Container */
.chart-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.chart-wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.chart-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.chart-percentage {
  font-size: 2rem;
  font-weight: 700;
  color: #00D09C;
  /* Matching new primary Mint Green */
}

.chart-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: -4px;
}

.placeholder-image {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-md);
  opacity: 0.7;
}

/* Results Cards */
.results-container {
  margin-top: 32px;
}

.result-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.result-header:hover {
  background: rgba(255, 255, 255, 0.05);
}

.result-title {
  font-weight: 600;
  color: var(--text-primary);
}

.result-badge {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.result-body {
  padding: 20px;
  background: var(--bg-dark-tertiary);
  border-top: 1px solid var(--glass-border);
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.result-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.result-label {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-value {
  font-weight: 600;
  color: var(--primary-accent);
}

/* Summary Card */
.summary-card {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(30, 64, 175, 0.1));
  border: 1px solid var(--primary-accent);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 24px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.summary-item {
  text-align: center;
  padding: 12px;
}

.summary-item-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.summary-item-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ============================================
   RATING SECTION
   ============================================ */
.rating-section {
  padding: 0 0 20px;
}

.rating-header {
  text-align: center;
  margin-bottom: 50px;
}

.rating-header h6 {
  color: var(--primary-accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.rating-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 16px;
}

.rating-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
}

/* Accordion */
.rating-accordion {
  max-width: 800px;
  margin: 0 auto 50px;
}

.accordion-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.accordion-header:hover {
  background: var(--glass-bg-hover);
}

.accordion-header p {
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.accordion-header .icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform var(--transition-normal);
}

.accordion-header .icon::before,
.accordion-header .icon::after {
  content: '';
  position: absolute;
  background: var(--text-secondary);
  border-radius: 2px;
}

.accordion-header .icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-header .icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--transition-normal);
}

.accordion-item.active .accordion-header .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

.accordion-content p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  margin: 0;
}

/* Rating Badges */
.recommended-badge {
  color: #10B981;
}

.top-ranked-badge {
  color: #F59E0B;
}

.not-recommended-badge {
  color: #EF4444;
}

/* ============================================
   AMC TICKER TAPE
   ============================================ */
.amc-ticker-container {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  position: relative;
  background: var(--bg-dark-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  margin-top: 40px;
}

/* Gradient Fade Edges */
.amc-ticker-container::before,
.amc-ticker-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.amc-ticker-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark-secondary), transparent);
}

.amc-ticker-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark-secondary), transparent);
}

.amc-ticker {
  display: flex;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  width: fit-content;
}

.amc-ticker:hover {
  animation-play-state: paused;
}

.amc-item {
  flex: 0 0 auto;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0.8;
  transition: all var(--transition-normal);
  border-right: 1px solid var(--glass-border);
}

.amc-item img {
  height: 32px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-normal);
}

.amc-item:hover {
  opacity: 1;
  color: var(--primary-accent);
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments for ticker */
@media (max-width: 768px) {
  .amc-ticker-container {
    padding: 30px 0;
  }

  .amc-item {
    padding: 10px 25px;
    font-size: 1rem;
  }
}

/* Fund Tabs */
.fund-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.fund-tab {
  padding: 12px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.fund-tab:hover,
.fund-tab.active {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
  color: white;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section {
  padding: 60px 0;
  text-align: center;
}

.partners-section h3 {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 32px;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  opacity: 0.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: 20px 0 80px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.testimonial-carousel {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 3px solid var(--primary-accent);
  padding: 3px;
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-quote {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

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

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--glass-border);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.carousel-dot.active {
  background: var(--primary-accent);
  width: 30px;
  border-radius: 5px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 10px 0 80px;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--glass-border-hover);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.faq-question:hover {
  background: var(--glass-bg-hover);
}

.faq-question h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
  padding-right: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-accent);
  font-size: 1.5rem;
  transition: transform var(--transition-normal);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

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

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}

.faq-more-btn {
  display: block;
  margin: 32px auto 0;
}

/* ============================================
   CALLBACK SECTION
   ============================================ */
.callback-section {
  padding: 0 0 80px;
}

.callback-container {
  max-width: 500px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
}

.callback-container h2 {
  font-size: 1.75rem;
  margin-bottom: 32px;
}

.callback-form .form-group {
  text-align: left;
}

.callback-form .btn-primary {
  width: 100%;
  margin-top: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 30px;
  background: var(--bg-dark-tertiary);
  border-top: 1px solid var(--glass-border);
}

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

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-disclaimer {
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-arn {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 1.25rem;
  text-decoration: none;
  transition: all var(--transition-normal);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.social-btn:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.social-btn.linkedin:hover {
  background: rgba(10, 102, 194, 0.2);
  border-color: #0a66c2;
  color: #0a66c2;
  box-shadow: 0 0 20px rgba(10, 102, 194, 0.3);
}

.social-btn.instagram:hover {
  background: rgba(225, 48, 108, 0.2);
  border-color: #e1306c;
  color: #e1306c;
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.3);
}

.social-btn.gmail:hover {
  background: rgba(234, 67, 53, 0.2);
  border-color: #ea4335;
  color: #ea4335;
  box-shadow: 0 0 20px rgba(234, 67, 53, 0.3);
}

.footer-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 24px 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .hero-section {
    padding: 150px 20px 60px;
    min-height: auto;
  }

  .navbar-brand img {
    height: 85px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 240px;
  }

  .calculator-container {
    padding: 24px;
  }

  .calculator-grid {
    gap: 32px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .callback-container {
    padding: 32px 24px;
    margin: 0 16px;
  }

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

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .fund-tabs {
    flex-direction: column;
  }

  .fund-tab {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

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

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

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mt-5 {
  margin-top: 48px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.mb-4 {
  margin-bottom: 32px;
}

.mb-5 {
  margin-bottom: 48px;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

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

.gap-1 {
  gap: 8px;
}

.gap-2 {
  gap: 16px;
}

.gap-3 {
  gap: 24px;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(37, 211, 102, 0.1);
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid #25d366;
}

.whatsapp-float:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.whatsapp-float i {
  font-size: 32px;
}

/* removed span style */

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float i {
    font-size: 28px;
  }
}