/* Base Styles */
:root {
  --primary: #1a2b5c;
  --primary-dark: #2e3a5c;
  --primary-light: #3a4b7c;
  --secondary: #d4af37;
  --secondary-light: #e5c048;
  --success: #2e5f44;
  --success-light: #3f7055;
  --text-dark: #1a2b5c;
  --text-light: #ffffff;
  --text-muted: #6b7280;
  --background: #ffffff;
  --background-light: #f5f7fa;
  --background-dark: #f0f4f8;
  --border: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--background);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

section {
  padding: 4rem 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

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

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--text-light);
  color: var(--secondary);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.btn-success {
  background-color: var(--success);
  color: var(--text-light);
}

.btn-success:hover {
  background-color: var(--success-light);
}

.btn-full {
  width: 100%;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--secondary);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

/* Navigation */
.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, rgba(26, 43, 92, 0.95), rgba(46, 58, 92, 0.95));
  color: var(--text-light);
  box-shadow: var(--shadow);
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-link {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.logo-j {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-right: 0.25rem;
}

.logo-text {
  position: relative;
}

.logo-underline {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-underline {
  transform: scaleX(1);
}

.desktop-menu {
  display: none;
}

.nav-link {
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.dropdown {
  position: relative;
  display: inline-block;
  margin-right: 1.5rem;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: var(--text-light);
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.dropdown-btn:hover {
  color: var(--secondary);
}

.icon-chevron-down {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 0.25rem;
  background-image: url("../images/icons/chevron-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.dropdown-content {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 12rem;
  background-color: var(--background);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 0.5rem;
  display: none;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: var(--background-light);
}

.nav-actions {
  display: flex;
  align-items: center;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--text-light);
  margin-left: 1rem;
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0;
}

.mobile-dropdown-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--text-light);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.mobile-dropdown-content {
  padding-left: 1rem;
  margin-top: 0.5rem;
  display: none;
}

.mobile-dropdown-content.active {
  display: block;
}

.mobile-dropdown-content a {
  display: block;
  padding: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.mobile-dropdown-content a:hover {
  color: var(--text-light);
}

.mobile-nav-link {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-weight: 500;
}

.mobile-actions {
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .desktop-menu {
    display: flex;
    align-items: center;
  }

  .mobile-menu-btn {
    display: none;
  }
}

/* Hero Section */
.hero-section {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--text-light);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-image {
  flex: 1;
  position: relative;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slider-slide.active {
  opacity: 1;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.slider-controls {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
}

.slider-dot.active {
  background-color: var(--text-light);
}

@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: row;
  }
}

/* Logo Section */
.logo-section {
  padding: 2rem 0;
  background-color: var(--background);
  text-align: center;
}

.logo-content {
  display: inline-block;
}

.large-logo {
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.large-logo-j {
  font-size: 3rem;
  color: var(--secondary);
  margin-right: 0.25rem;
}

.logo-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Quick Navigation Section */
.quick-nav-section {
  padding: 3rem 0;
  background-color: var(--background-light);
  position: relative;
  overflow: hidden;
}

.pattern-bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(26, 43, 92, 0.03) 10px,
    rgba(26, 43, 92, 0.03) 20px
  );
  opacity: 0.5;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.quick-nav-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

.quick-nav-card {
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.quick-nav-card:hover {
  box-shadow: var(--shadow-lg);
}

.investment-card {
  border-left: 4px solid var(--success);
}

.loan-card {
  border-left: 4px solid var(--secondary);
}

.other-card {
  border-left: 4px solid var(--primary);
}

.card-icon {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.icon-bg {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}

.investment-icon-bg {
  background-color: rgba(46, 95, 68, 0.1);
}

.investment-icon-bg i {
  color: var(--success);
}

.loan-icon-bg {
  background-color: rgba(212, 175, 55, 0.1);
}

.loan-icon-bg i {
  color: var(--secondary);
}

.other-icon-bg {
  background-color: rgba(26, 43, 92, 0.1);
}

.other-icon-bg i {
  color: var(--primary);
}

.quick-nav-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.card-link {
  display: flex;
  align-items: center;
  color: var(--success);
  font-weight: 500;
  margin-top: auto;
}

.icon-chevron-right {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 0.25rem;
  background-image: url("../images/icons/chevron-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-trending-up,
.icon-calculator,
.icon-users,
.icon-award,
.icon-clock,
.icon-shield {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-trending-up {
  background-image: url("../images/icons/trending-up.svg");
}

.icon-calculator {
  background-image: url("../images/icons/calculator.svg");
}

.icon-users {
  background-image: url("../images/icons/users.svg");
}

.icon-award {
  background-image: url("../images/icons/award.svg");
}

.icon-clock {
  background-image: url("../images/icons/clock.svg");
}

.icon-shield {
  background-image: url("../images/icons/shield.svg");
}

.icon-star {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/star.svg");
  background-size: contain;
  background-repeat: no-repeat;
  color: var(--secondary);
}

@media (min-width: 768px) {
  .quick-nav-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom, var(--background), var(--background-dark));
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
}

.feature-card .icon-bg {
  background-color: rgba(212, 175, 55, 0.1);
  margin-bottom: 1rem;
}

.feature-card .icon-bg i {
  color: var(--secondary);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .feature-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Services Section */
.services-section {
  padding: 4rem 0;
  background-color: var(--background-light);
  position: relative;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to bottom, var(--background-dark), var(--background-light));
}

.pattern-overlay {
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern-dots.png");
  background-repeat: repeat;
  opacity: 0.05;
}

.tabs {
  position: relative;
  z-index: 1;
}

.tab-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  overflow: hidden;
}

.tab-btn {
  padding: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  transition: background-color 0.3s ease;
}

.tab-btn.active {
  background-color: var(--background);
  font-weight: 500;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.service-card.popular {
  border: 1px solid var(--secondary);
}

.popular-tag {
  background-color: var(--secondary);
  color: var(--text-light);
  text-align: center;
  padding: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.return-rate,
.loan-amount {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.return-rate i,
.loan-amount i {
  margin-right: 0.5rem;
}

.return-rate span,
.loan-amount span {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--success);
}

.investment-info,
.loan-info {
  background-color: var(--background-light);
  padding: 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.investment-info p,
.loan-info p {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.investment-info p:first-child,
.loan-info p:first-child {
  font-weight: 500;
}

.card-title-with-tooltip {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.tooltip {
  position: relative;
  margin-left: 0.5rem;
}

.tooltip-trigger {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-color: var(--background-light);
  border-radius: 50%;
  text-align: center;
  line-height: 1rem;
  font-size: 0.75rem;
  cursor: pointer;
}

.tooltip-content {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 16rem;
  background-color: var(--background);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 0.75rem;
  font-size: 0.75rem;
  display: none;
  z-index: 10;
}

.tooltip:hover .tooltip-content {
  display: block;
}

.service-card.with-image .card-image {
  height: 12rem;
  margin: -1.5rem -1.5rem 1.5rem -1.5rem;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  overflow: hidden;
}

.service-card.with-image .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .service-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Calculator Section */
.calculator-section {
  padding: 4rem 0;
}

.calculator-container {
  background-color: var(--background);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.calculator-form {
  flex: 1;
}

.calculator-form .icon-bg {
  background-color: rgba(212, 175, 55, 0.1);
  margin-bottom: 1rem;
}

.calculator-form .icon-bg i {
  color: var(--secondary);
}

.calculator-form h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.calculator-form p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.slider-control {
  margin-bottom: 1.5rem;
}

.slider-control label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.slider-control input[type="range"] {
  width: 100%;
  height: 0.5rem;
  background-color: var(--background-light);
  border-radius: 9999px;
  appearance: none;
  outline: none;
}

.slider-control input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 1rem;
  height: 1rem;
  background-color: var(--primary);
  border-radius: 50%;
  cursor: pointer;
}

.calculator-result {
  flex: 1;
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.calculator-result h3 {
  margin-bottom: 1rem;
}

.result-details {
  margin-bottom: 1.5rem;
}

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

.result-row span:first-child {
  color: var(--text-muted);
}

.result-row span:last-child {
  font-weight: 500;
}

.result-row.total span:last-child {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--success);
}

.result-divider {
  height: 1px;
  background-color: var(--border);
  margin: 1rem 0;
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .calculator-container {
    flex-direction: row;
    padding: 2rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
  background: linear-gradient(to right, rgba(26, 43, 92, 0.05), rgba(46, 95, 68, 0.05));
}

.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-header {
  margin-bottom: 1rem;
}

.testimonial-header h4 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.testimonial-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.testimonial-divider {
  width: 4rem;
  height: 0.25rem;
  background-color: var(--secondary);
  margin-bottom: 0.75rem;
}

.testimonial-text {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.rating {
  display: flex;
}

@media (min-width: 768px) {
  .testimonial-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Footer */
.site-footer {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--text-light);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.license-info {
  display: flex;
  align-items: center;
}

.license-info i {
  color: var(--secondary);
  margin-right: 0.5rem;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.copyright {
  margin-bottom: 1rem;
}

.security-badges {
  display: flex;
  gap: 0.5rem;
}

.security-badge {
  height: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .copyright {
    margin-bottom: 0;
  }
}

/* Responsive Adjustments */
@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 2rem;
  }
}

/* Additional Styles for Financial Website
   This file contains styles for classes that were missing or improperly styled
   in the original CSS implementation */

/* ===== Range Input Styling ===== */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e5e7eb;
  outline: none;
  margin: 10px 0;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary);
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary);
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ===== Plan Cards ===== */
.plan-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.plan-card {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  box-shadow: var(--shadow-lg);
}

.plan-card.popular {
  border: 2px solid var(--secondary);
  position: relative;
}

.plan-card h3 {
  margin-bottom: 1rem;
}

.plan-features {
  margin: 1.5rem 0;
}

.plan-features h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.plan-features ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.plan-features ul li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

/* ===== Timeline ===== */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.5rem;
  width: 2px;
  background-color: var(--border);
}

.timeline-item {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  background-color: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--background);
}

.timeline-content {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

/* ===== Performance Section ===== */
.performance-section {
  padding: 4rem 0;
  background-color: var(--background-light);
}

.performance-container {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.performance-chart {
  margin-bottom: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.performance-chart img {
  width: 100%;
  height: auto;
  display: block;
}

.performance-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--background-light);
  border-radius: var(--radius);
}

.stat-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 0.25rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--text-light);
}

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

.cta-container h2 {
  margin-bottom: 1rem;
}

.cta-container p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 4rem 0;
  background-color: var(--background);
}

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

.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: var(--primary);
}

.faq-item p {
  color: var(--text-muted);
}

/* ===== Loan Cards ===== */
.loan-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.loan-card {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.loan-card:hover {
  box-shadow: var(--shadow-lg);
}

.loan-card.popular {
  border: 2px solid var(--secondary);
  position: relative;
}

.loan-card h3 {
  margin-bottom: 1rem;
}

.loan-amount {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.loan-amount i {
  margin-right: 0.5rem;
  color: var(--secondary);
}

.loan-features {
  margin: 1.5rem 0;
}

.loan-features h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.loan-features ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.loan-features ul li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

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

.info-row span:first-child {
  color: var(--text-muted);
}

.info-row span:last-child {
  font-weight: 500;
}

/* ===== Document Cards ===== */
.documents-section {
  padding: 4rem 0;
  background-color: var(--background-light);
}

.document-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.document-card {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.document-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.document-list {
  list-style: none;
}

.document-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.document-list li i {
  color: var(--success);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* ===== Service Overview ===== */
.specialized-services-section {
  padding: 4rem 0;
}

.service-overview {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.service-overview:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-content {
  flex: 1;
}

.service-image {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-features {
  margin: 1.5rem 0;
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.service-features h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.service-features ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.service-features ul li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

/* ===== Case Studies ===== */
.case-studies-section {
  padding: 4rem 0;
  background-color: var(--background-light);
}

.case-study-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.case-study-card {
  background-color: var(--background);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
}

.case-study-card:hover {
  box-shadow: var(--shadow-lg);
}

.case-study-image {
  height: 200px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-content {
  padding: 1.5rem;
}

.case-study-content h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.case-study-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.case-study-link {
  display: flex;
  align-items: center;
  color: var(--secondary);
  font-weight: 500;
}

.case-study-link i {
  margin-left: 0.5rem;
}

/* ===== Specialized Features ===== */
.why-specialized-section {
  padding: 4rem 0;
}

.specialized-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.specialized-feature {
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.specialized-feature h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.specialized-feature p {
  color: var(--text-muted);
}

/* ===== Responsive Styles ===== */
@media (min-width: 768px) {
  .plan-cards,
  .loan-cards,
  .document-cards,
  .performance-stats,
  .case-study-cards,
  .specialized-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .service-overview {
    flex-direction: row;
    align-items: center;
  }

  .service-overview.reverse {
    flex-direction: row-reverse;
  }

  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-item {
    padding-left: 0;
    padding-right: 0;
    width: 50%;
    margin-left: 50%;
  }

  .timeline-item:nth-child(even) {
    margin-left: 0;
  }

  .timeline-number {
    left: -1.5rem;
  }

  .timeline-item:nth-child(even) .timeline-number {
    left: auto;
    right: -1.5rem;
  }
}

@media (min-width: 1024px) {
  .plan-cards,
  .loan-cards,
  .performance-stats,
  .case-study-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .specialized-features {
    grid-template-columns: repeat(4, 1fr);
  }

  .timeline-item {
    padding-right: 3rem;
  }

  .timeline-item:nth-child(even) {
    padding-left: 3rem;
  }
}

/* Additional Styles Part 2 for Financial Website
   This file contains styles for additional classes that were missing or improperly styled */

/* ===== Mission Section ===== */
.mission-section {
  padding: 3rem 0;
  background-color: var(--background-light);
  position: relative;
}

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

.mission-text {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.mission-divider {
  width: 6rem;
  height: 0.25rem;
  background-color: var(--secondary);
  margin: 0 auto;
}

/* ===== Values Section ===== */
.values-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.values-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.value-card {
  background-color: var(--background-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
}

.value-card .icon-bg {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(212, 175, 55, 0.1);
  margin-bottom: 1rem;
}

.value-card .icon-bg i {
  color: var(--secondary);
}

.value-card h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.value-card p {
  color: var(--text-muted);
}

/* ===== Team Values Section ===== */
.team-values-section {
  padding: 4rem 0;
  background-color: var(--background-light);
}

.values-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-box {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary);
}

.value-box h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.value-box p {
  color: var(--text-muted);
}

/* ===== Timeline Year ===== */
.timeline-year {
  position: absolute;
  left: -3.5rem;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.year-circle {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 0 0 4px var(--background);
}

/* ===== Department Section ===== */
.departments-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.department-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.department-card {
  background-color: var(--background-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
}

.department-card:hover {
  box-shadow: var(--shadow-lg);
}

.department-card .icon-bg {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 43, 92, 0.1);
  margin-bottom: 1rem;
}

.department-card .icon-bg i {
  color: var(--primary);
}

.department-card h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.department-card p {
  color: var(--text-muted);
}

/* ===== Join Team Section ===== */
.join-team-section {
  padding: 4rem 0;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--text-light);
}

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

.join-content h2 {
  margin-bottom: 1rem;
}

.join-content p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  opacity: 0.9;
}

/* ===== Page Header ===== */
.page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--text-light);
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
}

.header-content h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.header-content p {
  font-size: 1.125rem;
  opacity: 0.9;
}

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

/* ===== Regulatory Section ===== */
.regulatory-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.regulatory-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.regulatory-card {
  background-color: var(--background-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
}

.regulatory-card:hover {
  box-shadow: var(--shadow-lg);
}

.regulatory-card .icon-bg {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 43, 92, 0.1);
  margin-bottom: 1rem;
}

.regulatory-card .icon-bg i {
  color: var(--primary);
}

.regulatory-card h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.regulatory-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ===== Framework Section ===== */
.framework-section {
  padding: 4rem 0;
  background-color: var(--background-light);
}

.framework-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.framework-box {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary);
}

.framework-box h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.framework-box p {
  color: var(--text-muted);
}

/* ===== Certifications Section ===== */
.certifications-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.certification-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.certification-card {
  background-color: var(--background-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.certification-card:hover {
  box-shadow: var(--shadow-lg);
}

.cert-image {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-image img {
  max-width: 100%;
  max-height: 100%;
}

.certification-card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.certification-card p {
  color: var(--text-muted);
}

.cert-date {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0.5rem 0 1rem;
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background-color: var(--background);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-info {
  padding: 2rem;
  background-color: var(--background-light);
}

.contact-info h2 {
  margin-bottom: 2rem;
  text-align: left;
}

.info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.info-item .icon-bg {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 43, 92, 0.1);
  margin-right: 1rem;
  flex-shrink: 0;
}

.info-item .icon-bg i {
  color: var(--primary);
}

.info-content h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.info-content p {
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

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

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(26, 43, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

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

.social-link i {
  color: var(--primary);
}

.social-link:hover i {
  color: var(--text-light);
}

.contact-form {
  padding: 2rem;
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  font-family: inherit;
  font-size: inherit;
  transition: border-color 0.3s ease;
}

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

.form-security {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.form-security i {
  color: var(--success);
  margin-right: 0.5rem;
}

/* ===== Branch Cards ===== */
.branches-section {
  padding: 4rem 0;
  background-color: var(--background-light);
}

.branch-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.branch-card {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
}

.branch-card:hover {
  box-shadow: var(--shadow-lg);
}

.branch-card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.branch-card p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.branch-image {
  margin-top: 1.5rem;
  height: 12rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.branch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Legal Content ===== */
.legal-content-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  margin-bottom: 1rem;
  color: var(--primary);
  text-align: left;
  font-size: 1.5rem;
}

.legal-section h3 {
  margin: 1.5rem 0 0.75rem;
  color: var(--primary);
  font-size: 1.25rem;
}

.legal-section p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.legal-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-section ul li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

/* ===== Licenses Section ===== */
.licenses-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.licenses-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.license-card {
  background-color: var(--background-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.license-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.license-header h2 {
  margin-bottom: 0;
  font-size: 1.5rem;
  color: var(--primary);
}

.license-badge {
  background-color: var(--secondary);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.license-details {
  margin-bottom: 1.5rem;
  background-color: var(--background);
  padding: 1rem;
  border-radius: var(--radius);
}

.license-info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.license-info-row span:first-child {
  color: var(--text-muted);
  font-weight: 500;
}

.status-active {
  color: var(--success);
  font-weight: 600;
}

.license-description {
  margin-bottom: 1.5rem;
}

.license-description p {
  color: var(--text-muted);
}

/* ===== Compliance Statement ===== */
.compliance-statement-section {
  padding: 4rem 0;
  background-color: var(--background-light);
}

.compliance-statement {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--background);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.compliance-statement h2 {
  margin-bottom: 1.5rem;
  color: var(--primary);
  text-align: left;
}

.compliance-statement p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.compliance-statement a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
}

.compliance-statement a:hover {
  color: var(--secondary);
}

/* ===== Button Outline Full ===== */
.btn-outline.btn-full {
  width: 100%;
  display: block;
  text-align: center;
}

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

/* ===== Responsive Styles ===== */
@media (min-width: 768px) {
  .values-cards,
  .values-boxes,
  .department-cards,
  .regulatory-cards,
  .framework-boxes,
  .certification-cards,
  .branch-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    grid-template-columns: 1fr 1fr;
  }

  .header-content h1 {
    font-size: 3rem;
  }

  .mission-text {
    font-size: 1.75rem;
  }

  .licenses-content {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .values-cards,
  .department-cards,
  .certification-cards,
  .branch-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .framework-boxes {
    grid-template-columns: repeat(4, 1fr);
  }

  .licenses-content {
    grid-template-columns: repeat(2, 1fr);
  }
}


