/*

Pension Metrics Bank - Modern Banking UI
Premium Military Retirement Banking Platform

*/

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. Reset & Base
02. Color System
03. Typography
04. Modern Header & Navigation
05. Hero Sections
06. Banking Cards & Dashboard
07. Military Services
08. Interactive Components
09. Forms & Inputs
10. Testimonials
11. Footer
12. Responsive
13. Animations & Effects
14. Dashboard Components
------------------------------------------------ */

/* 
01. Reset & Base
--------------------------------------------- 
*/

:root {
  /* Modern Banking Color Palette */
  --primary-blue: #0a5c2a;
  --primary-blue-light: #2e8b57;
  --primary-blue-dark: #08421b;
  --secondary-gold: #d4af37;
  --accent-green: #10b981;
  --accent-orange: #f59e0b;
  --accent-red: #ef4444;
  
  /* Neutral Colors */
  --bg-light: #f8fafc;
  --bg-dark: #1e293b;
  --card-bg: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --border-color: #e2e8f0;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.18);
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 
02. Typography
--------------------------------------------- 
*/

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-blue);
  border-radius: 2px;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.section-heading h2 {
  margin-bottom: 1rem;
}

.section-heading .subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* 
03. Modern Header & Navigation
--------------------------------------------- 
*/

.header-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}

.header-sticky {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.logo:before {
  content: '🏦';
  font-size: 1.3rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav li a {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav li a:hover {
  color: var(--primary-blue);
  background: rgba(10, 92, 42, 0.05);
}

.nav li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav li a:hover:after {
  width: 70%;
}

.nav li:last-child a {
  background: var(--primary-blue);
  color: white;
  padding: 0.75rem 1.5rem;
}

.nav li:last-child a:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav li:last-child a:after {
  display: none;
}

.has-sub {
  position: relative;
}

.has-sub:after {
  content: '▼';
  font-size: 0.6rem;
  margin-left: 5px;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.has-sub:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li a {
  display: block;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.sub-menu li:last-child a {
  border-bottom: none;
}

.menu-trigger {
  display: none;
}

/* 
04. Hero Sections
--------------------------------------------- 
*/

.swiper-container {
  height: 100vh;
  min-height: 700px;
  margin-top: 80px;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(10, 92, 42, 0.85), rgba(8, 66, 27, 0.9)),
              url('../images/military-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.header-text {
  max-width: 600px;
  color: white;
}

.header-text h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
  background: none;
  -webkit-text-fill-color: white;
}

.header-text h2 em {
  color: #ffd700;
  font-style: normal;
}

.div-dec {
  width: 80px;
  height: 4px;
  background: #ffd700;
  margin: 1.5rem 0;
  border-radius: 2px;
}

.buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.green-button a,
.orange-button a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.green-button a {
  background: var(--accent-green);
  color: white;
}

.orange-button a {
  background: var(--secondary-gold);
  color: var(--text-primary);
}

.green-button a:hover {
  background: #0da068;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.orange-button a:hover {
  background: #e6b522;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.swiper-button-next,
.swiper-button-prev {
  color: white !important;
  background: rgba(255, 255, 255, 0.1);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem !important;
}

/* 
05. Banking Cards & Dashboard Preview
--------------------------------------------- 
*/

.banking-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.bank-card {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  border-radius: 16px;
  padding: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

.bank-card:hover {
  transform: translateY(-5px);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.card-chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(45deg, var(--secondary-gold), #b8860b);
  border-radius: 4px;
}

.card-balance {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.card-number {
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.card-features {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.card-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

/* 
06. Military Services
--------------------------------------------- 
*/

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue-light);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.service-card h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.service-features li:before {
  content: '✓';
  color: var(--accent-green);
  font-weight: bold;
}

/* 
07. Interactive Components
--------------------------------------------- 
*/

.calculator-widget {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  margin-top: 3rem;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(10, 92, 42, 0.1);
}

.calc-button {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.calc-button:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-2px);
}

/* 
08. Modern Testimonials
--------------------------------------------- 
*/

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 4rem;
  color: var(--primary-blue-light);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.author-info h4 {
  margin: 0;
  font-size: 1rem;
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* 
09. Footer
--------------------------------------------- 
*/

footer {
  background: var(--primary-blue-dark);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 
10. Page Headings
--------------------------------------------- 
*/

.page-heading {
  background: linear-gradient(rgba(10, 92, 42, 0.9), rgba(8, 66, 27, 0.95)),
              url('../images/page-heading-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 12rem 0 6rem;
  text-align: center;
  color: white;
  margin-top: 80px;
}

.page-heading h2 {
  font-size: 3rem;
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 1rem;
}

.page-heading .div-dec {
  margin: 1.5rem auto;
}

/* 
11. About Page Components
--------------------------------------------- 
*/

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}

.accordion-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.accordion-header {
  padding: 1.5rem;
  background: var(--primary-blue);
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.accordion-content {
  padding: 1.5rem;
  background: white;
  color: var(--text-secondary);
}

/* 
12. Services Page Components
--------------------------------------------- 
*/

.service-detail {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  margin-top: 3rem;
  box-shadow: var(--shadow-lg);
}

.service-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 1rem;
}

.tab-button {
  padding: 0.75rem 1.5rem;
  background: none;
  border: none;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.tab-button.active {
  color: var(--primary-blue);
}

.tab-button.active:after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-blue);
}

/* 
13. Contact Page Components
--------------------------------------------- 
*/

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.contact-info {
  display: grid;
  gap: 2rem;
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card i {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(10, 92, 42, 0.1);
}

/* 
14. Responsive Design
--------------------------------------------- 
*/

@media (max-width: 1024px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .nav {
    gap: 1rem;
  }
  
  .nav li a {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }
}

@media (max-width: 768px) {
  .menu-trigger {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-blue);
  }
  
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav li {
    width: 100%;
  }
  
  .nav li a {
    display: block;
    padding: 1rem;
    text-align: center;
  }
  
  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 0.5rem;
  }
  
  .has-sub:after {
    display: none;
  }
  
  .swiper-container {
    height: auto;
    min-height: 500px;
  }
  
  .header-text h2 {
    font-size: 2.2rem;
  }
  
  .buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  
  .container {
    padding: 0 15px;
  }
  
  .service-detail,
  .calculator-widget {
    padding: 1.5rem;
  }
  
  .bank-card {
    padding: 1.5rem;
  }
  
  .card-balance {
    font-size: 2rem;
  }
}

/* 
15. Animations & Effects
--------------------------------------------- 
*/

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in {
  animation: slideIn 0.5s ease-out;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* 
16. Dashboard Preview Elements
--------------------------------------------- 
*/

.dashboard-preview {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border-color);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.chart-container {
  height: 200px;
  background: var(--bg-light);
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.recent-activity {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.activity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.activity-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* 
17. Military Specific Elements
--------------------------------------------- 
*/

.military-badge {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-gold));
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.rank-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-light);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
}

/* 
18. Form Validation Styles
--------------------------------------------- 
*/

.input-error {
  border-color: var(--accent-red) !important;
}

.error-message {
  color: var(--accent-red);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.input-success {
  border-color: var(--accent-green) !important;
}

/* 
19. Loading States
--------------------------------------------- 
*/

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-top-color: var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* 
20. Interactive Toggle Switch
--------------------------------------------- 
*/

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: var(--border-color);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch.active {
  background: var(--primary-blue);
}

.toggle-switch:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toggle-switch.active:after {
  left: calc(100% - 27px);
}

/* 
21. Progress Indicators
--------------------------------------------- 
*/

.progress-bar {
  height: 6px;
  background: var(--border-color);
  border-radius: 3px;
  overflow: hidden;
  margin: 1rem 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
  border-radius: 3px;
  transition: width 0.5s ease;
}

/* 
22. Modal Overlay
--------------------------------------------- 
*/

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

/* 
23. Toast Notifications
--------------------------------------------- 
*/

.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 2000;
}

.toast {
  background: white;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateX(100%);
  animation: slideInRight 0.3s ease forwards;
}

.toast.success {
  border-left: 4px solid var(--accent-green);
}

.toast.error {
  border-left: 4px solid var(--accent-red);
}

.toast.info {
  border-left: 4px solid var(--primary-blue);
}

@keyframes slideInRight {
  to { transform: translateX(0); }
}

/* 
24. Custom Scrollbar
--------------------------------------------- 
*/

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-blue-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue);
}

/* 
25. Print Styles
--------------------------------------------- 
*/

@media print {
  .nav,
  .buttons,
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .service-card,
  .bank-card,
  .testimonial-card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}