/* Enhanced Style CSS for Heritage Assets */

:root {
  --primary: #4361ee;
  --primary-dark: #3a56d4;
  --secondary: #7209b7;
  --accent: #f72585;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-accent: linear-gradient(135deg, var(--secondary), var(--accent));
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);
  --border-radius-sm: 0.25rem;
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  --transition: all 0.3s ease;
}

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
}

/* Typography Enhancements */
.display-1 {
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.display-2 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Enhanced Navbar */
.navbar {
  padding: 1rem 0;
  transition: var(--transition);
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow);
}

.navbar-brand img {
  height: 40px;
  transition: var(--transition);
}

.navbar.scrolled .navbar-brand img {
  height: 35px;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.navbar .btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius);
  font-weight: 500;
}

/* Enhanced Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
  text-transform: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.btn:hover::before {
  left: 100%;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-gradient {
  background: var(--gradient-primary);
  border: none;
  color: white;
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Enhanced Cards */
.card {
  border-radius: var(--border-radius);
  border: none;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--gray);
}

/* Feature Cards */
.feature-card {
  padding: 2rem;
  border-radius: var(--border-radius);
  background: white;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.75rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-card {
  padding: 2rem;
  border-radius: var(--border-radius);
  background: white;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--gray-light);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--primary);
  color: white;
  padding: 0.25rem 2rem;
  transform: rotate(45deg);
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
}

.pricing-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 1.5rem;
}

.pricing-header h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
}

.price .amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.price .period {
  font-size: 1rem;
  color: var(--gray);
  display: block;
  margin-top: 0.5rem;
}

.pricing-features {
  margin-bottom: 1.5rem;
}

.pricing-features ul {
  margin-bottom: 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features i {
  font-size: 1.25rem;
}

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

/* Testimonial Cards */
.testimonial-card {
  padding: 2rem;
  border-radius: var(--border-radius);
  background: white;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

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

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.1;
  font-family: serif;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info h5 {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.testimonial-author-info p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 0.875rem;
}

/* Team Cards */
.team-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: white;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h4 {
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.team-info p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.team-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-light);
  color: var(--dark);
  border-radius: 50%;
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* Enhanced Sections */
section {
  position: relative;
  padding: 5rem 0;
}

.section-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/patterns/pattern-dots.svg');
  background-size: 30px;
  opacity: 0.05;
  pointer-events: none;
}

.section-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: url('../images/shapes/wave.svg');
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.bg-gradient {
  background: var(--gradient-primary);
  color: white;
}

.bg-dark {
  background-color: var(--dark);
  color: white;
}

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

/* Hero Section */
.hero-section {
  position: relative;
  padding: 8rem 0 6rem;
  background: var(--dark);
  color: white;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: url('../images/shapes/wave-light.svg');
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

/* Crypto Ticker */
.crypto-ticker {
  background: var(--dark);
  padding: 0.75rem 0;
  position: relative;
  z-index: 10;
}

.ticker-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-title {
  font-weight: 700;
  color: white;
  padding-right: 1rem;
  white-space: nowrap;
}

.ticker-items {
  display: flex;
  animation: ticker 30s linear infinite;
  gap: 2rem;
}

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

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.ticker-item img {
  width: 24px;
  height: 24px;
}

.crypto-name {
  color: white;
  font-weight: 500;
}

.crypto-price {
  color: rgba(255, 255, 255, 0.8);
}

.crypto-change {
  font-weight: 600;
}

.crypto-change.positive {
  color: var(--success);
}

.crypto-change.negative {
  color: var(--danger);
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  background: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-item, 
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
  color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* Stats Cards */
.stat-card {
  padding: 2rem;
  border-radius: var(--border-radius);
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

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

.stat-card h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 0;
}

/* Value Cards */
.value-card {
  padding: 2rem;
  border-radius: var(--border-radius);
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

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

.value-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.75rem;
}

.value-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  background: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-card {
  padding: 3rem;
  border-radius: var(--border-radius);
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/patterns/pattern-dots.svg');
  background-size: 20px;
  opacity: 0.1;
  z-index: -1;
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  position: relative;
}

.footer-brand img {
  height: 40px;
}

.footer h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a:hover {
  color: white;
  padding-left: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-item i {
  font-size: 1.25rem;
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

.newsletter-form {
  margin-top: 1rem;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-5px);
}

/* Performance Charts */
.performance-chart-large {
  height: 400px;
  position: relative;
}

.plan-performance-card {
  padding: 2rem;
  border-radius: var(--border-radius);
  background: white;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

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

.plan-performance-card.featured-plan {
  border: 2px solid var(--primary);
}

.plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.plan-return {
  margin-top: 1rem;
}

.return-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.return-period {
  font-size: 0.875rem;
  color: var(--gray);
}

.plan-chart {
  height: 200px;
  margin-bottom: 1.5rem;
}

.plan-metrics {
  border-top: 1px solid var(--gray-light);
  padding-top: 1.5rem;
}

.metric-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.metric-label {
  color: var(--gray);
}

.metric-value {
  font-weight: 600;
}

/* Market Events */
.market-event-card {
  padding: 2rem;
  border-radius: var(--border-radius);
  background: white;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

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

.event-header {
  margin-bottom: 1.5rem;
}

.event-header h3 {
  margin-bottom: 0.5rem;
}

.event-date {
  color: var(--gray);
  font-size: 0.875rem;
}

.event-comparison {
  margin-bottom: 1.5rem;
}

.comparison-item {
  margin-bottom: 1rem;
  position: relative;
}

.comparison-label {
  font-weight: 600;
  display: inline-block;
  width: 120px;
}

.comparison-value {
  font-weight: 700;
}

.comparison-value.positive {
  color: var(--success);
}

.comparison-value.negative {
  color: var(--danger);
}

.comparison-bar {
  height: 6px;
  border-radius: 3px;
  margin-top: 0.5rem;
}

.comparison-bar.positive {
  background: var(--success);
}

.comparison-bar.negative {
  background: var(--danger);
}

/* Monthly Returns Table */
.monthly-returns-table {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.monthly-returns-table th {
  background: var(--dark);
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 1rem 0.5rem;
}

.monthly-returns-table td {
  text-align: center;
  padding: 0.75rem 0.5rem;
  font-weight: 500;
}

.monthly-returns-table .year {
  font-weight: 700;
  background: var(--gray-light);
}

.monthly-returns-table .total {
  font-weight: 700;
}

.monthly-returns-table .positive {
  color: var(--success);
}

.monthly-returns-table .negative {
  color: var(--danger);
}

/* Methodology Section */
.methodology-item {
  margin-bottom: 1.5rem;
}

.methodology-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Specialized Cards */
.specialized-card {
  padding: 2rem;
  border-radius: var(--border-radius);
  background: white;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

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

.specialized-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.75rem;
}

.specialized-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.specialized-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.specialized-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.specialized-features i {
  color: var(--primary);
  font-size: 1.25rem;
}

/* Allocation Categories */
.allocation-category {
  margin-bottom: 1.5rem;
}

.allocation-category h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.allocation-chart {
  height: 400px;
  position: relative;
}

/* Performance Highlights */
.performance-highlight {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  background: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.highlight-label {
  display: block;
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.highlight-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* FAQ Accordion */
.accordion {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.accordion-item {
  background: white;
  border: none;
  margin-bottom: 1rem;
  border-radius: var(--border-radius) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  padding: 1.25rem;
  font-weight: 600;
  font-size: 1.1rem;
  background: white;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--gray-light);
}

.accordion-button::after {
  background-size: 1.25rem;
  transition: var(--transition);
}

.accordion-body {
  padding: 0 1.25rem 1.25rem;
}

/* Investment Calculator */
.calculator-card {
  padding: 2rem;
  border-radius: var(--border-radius);
  background: white;
  box-shadow: var(--shadow);
}

.calculator-result {
  background: var(--light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-top: 1.5rem;
}

.result-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.result-label {
  color: var(--gray);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form-control {
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .display-1 {
    font-size: 3.5rem;
  }
  
  .display-2 {
    font-size: 3rem;
  }
  
  .hero-section {
    padding: 6rem 0 4rem;
  }
  
  .page-header {
    padding: 6rem 0 3rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .cta-card {
    padding: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .display-1 {
    font-size: 3rem;
  }
  
  .display-2 {
    font-size: 2.5rem;
  }
  
  .hero-btns {
    flex-direction: column;
  }
  
  .hero-btns .btn {
    width: 100%;
  }
  
  .performance-highlight {
    grid-template-columns: 1fr;
  }
  
  .monthly-returns-table {
    font-size: 0.875rem;
  }
  
  .monthly-returns-table th,
  .monthly-returns-table td {
    padding: 0.5rem 0.25rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .display-1 {
    font-size: 2.5rem;
  }
  
  .display-2 {
    font-size: 2rem;
  }
  
  .price .amount {
    font-size: 2.5rem;
  }
  
  .stat-card h3 {
    font-size: 2rem;
  }
  
  .return-value {
    font-size: 2rem;
  }
  
  .result-value {
    font-size: 2rem;
  }
}

/* Animation Keyframes */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}