/* ============================================================= */
/*  mpho-custom.css – FINAL VERSION 2025 – FULL WIDTH + PURPLE  */
/* ============================================================= */

:root {
  --navy: #0a1d37;
  --navy-light: #1e3a5f;
  --purple: #6a1b9a;
  --purple-hover: #8e24aa;
  --white: #ffffff;
  --offwhite: #f8f9fc;
}

/* ============================================================= */
/*  RESET & BASIC LAYOUT                                         */
/* ============================================================= */
*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--offwhite);
  color: #222;
  line-height: 1.7;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* FULL WIDTH – NO CONTAINER RESTRICTIONS */
.container,
nav,
footer .footer-grid,
main { max-width: none !important; padding-left: 5% !important; padding-right: 5% !important; }

/* ============================================================= */
/*  HEADER & LOGO (BIGGER)                                       */
/* ============================================================= */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10,29,55,0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}
header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 8px 32px rgba(10,29,55,0.1);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
}

.logo {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
}
.logo img { height: 80px; width: auto; display: block; }

/* ============================================================= */
/*  NAVIGATION                                                   */
/* ============================================================= */
.nav-links {
  display: flex;
  gap: 2.8rem;
  list-style: none;
}
.nav-links a {
  position: relative;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0; height: 3px;
  bottom: 0; left: 50%;
  background: var(--purple);
  transition: all 0.4s ease;
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; left: 0; }
.nav-links a:hover,
.nav-links a.active { color: var(--purple); }

/* ============================================================= */
/*  MOBILE MENU TOGGLE (HAMBURGER ICON)                          */
/* ============================================================= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--navy);
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

/* Hamburger to X animation */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ============================================================= */
/*  HERO SLIDER – FULL WIDTH, PURE WHITE TEXT                    */
/* ============================================================= */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.slide.active { opacity: 1; }
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,29,55,0.3), rgba(10,29,55,0.85));
}
.slide-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
}
.slide-content h1 {
  font-size: 5.5rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
  color: white;
}
.slide-content p {
  font-size: 1.8rem;
  font-weight: 400;
  color: white;
  opacity: 0.95;
}

/* Slider Dots */
.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 3;
}
.slider-dot {
  width: 15px; height: 15px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.active {
  background: var(--purple);
  transform: scale(1.4);
}

/* ============================================================= */
/*  VALUES GRID & SECTIONS                                       */
/* ============================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  padding: 6rem 8%;
  background: white;
}
.value-card {
  background: white;
  padding: 4rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(106,27,154,0.12);
  transition: all 0.4s ease;
}
.value-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(106,27,154,0.2);
}
.value-card h3 {
  font-size: 2.4rem;
  color: var(--purple);
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.value-card p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ============================================================= */
/*  FOOTER                                                       */
/* ============================================================= */
footer {
  background: var(--navy);
  color: white;
  padding: 6rem 8% 3rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: white;
}
.footer-col a {
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-col a:hover {
  color: var(--purple);
  transform: translateX(6px);
}
.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

/* ============================================================= */
/*  MOBILE RESPONSIVE                                            */
/* ============================================================= */
@media (max-width: 868px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100dvh;
    background: rgba(10, 29, 55, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 120px 40px 40px;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    color: white !important;
    font-size: 1.3rem;
    padding: 1rem 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--purple) !important;
  }
  
  /* Mobile dropdowns */
  .dropdown-menu {
    position: static !important;
    display: none !important;
    background: rgba(106, 27, 154, 0.2);
    border-left: 3px solid var(--purple);
    margin-top: 10px;
    margin-left: 20px;
    box-shadow: none;
  }
  
  .dropdown-menu.active {
    display: block !important;
  }
  
  .dropdown-menu li {
    margin-bottom: 0;
  }
  
  .dropdown-menu a {
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .logo {
    font-size: 2.2rem;
  }
  
  .logo img {
    height: 60px;
  }
  
  .slide-content h1 {
    font-size: 3.4rem;
  }
  
  .slide-content p {
    font-size: 1.4rem;
  }
}

/* Overlay for mobile menu */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Desktop Dropdowns */
.dropdown {
  position: relative;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 999;
}

.dropdown-menu a {
  color: white !important;
  padding: 12px 20px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu a:hover {
  background: var(--purple);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

/* ============================================================= */
/*  STATISTICS SECTION                                           */
/* ============================================================= */
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.stat-label {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
  color: #fff;
}

.stat-plus {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--purple);
  font-weight: bold;
  opacity: 0.7;
}

/* Responsive adjustments for stats */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .stat-label {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-card {
    padding: 2rem 1.5rem;
  }
}

/* SERVICES CSSS (FURTHER SEPARATED) */
/* services.css - Separate CSS file for services page */

/* Services Page Specific Styles */
.services-page {
    background: #f8f9fc;
}

/* Hero Section */
.services-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
    color: white;
    text-align: center;
    padding: 8rem 8% 6rem;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0L48,15C96,30,192,60,288,75C384,90,480,90,576,75C672,60,768,30,864,15L960,0L960,100L0,100Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.5;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    animation: fadeInUp 1s ease;
}

.services-hero p {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

/* Services Grid Section */
.services-grid-section {
    padding: 4rem 8%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(10, 29, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

/* Staggered animation delays */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(106, 27, 154, 0.25);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--purple), var(--navy));
    z-index: 2;
}

/* Service Image */
.service-image {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.8s ease;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

/* Service Content */
.service-content {
    padding: 2.5rem;
    position: relative;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: var(--purple);
}

.service-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Service Features List */
.service-features {
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.8rem;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: bold;
}

/* Service Link */
.service-link {
    display: inline-block;
    color: var(--purple);
    font-weight: 600;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--purple);
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-size: 1rem;
}

.service-card:hover .service-link {
    background: var(--purple);
    color: white;
    transform: translateX(10px);
}

/* Call to Action Section */
.services-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    text-align: center;
    padding: 6rem 8%;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle at center, rgba(106,27,154,0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--purple);
    color: white;
}

.cta-button.primary:hover {
    background: var(--purple-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106,27,154,0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--navy);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .services-hero h1 {
        font-size: 3.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 6rem 5% 4rem;
    }
    
    .services-hero h1 {
        font-size: 2.8rem;
    }
    
    .services-hero p {
        font-size: 1.2rem;
    }
    
    .services-grid-section {
        padding: 3rem 5%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-content {
        padding: 2rem;
    }
    
    .services-cta {
        padding: 4rem 5%;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

/* Loading Animation */
.service-card.loading {
    animation: shimmer 2s infinite linear;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Hover Effects Enhancement */
.service-card:hover .service-content h3 {
    animation: colorPulse 2s infinite;
}

@keyframes colorPulse {
    0%, 100% {
        color: var(--purple);
    }
    50% {
        color: var(--navy);
    }
}
/* services.css - Combined CSS for all service detail pages */

/* ===================================================== */
/* SERVICE DETAIL PAGES COMMON STYLES                   */
/* ===================================================== */

.service-detail-page {
    background: #f8f9fc;
}

/* Service Hero Section */
.service-detail-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
    color: white;
    text-align: center;
    padding: 8rem 8% 6rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0L48,15C96,30,192,60,288,75C384,90,480,90,576,75C672,60,768,30,864,15L960,0L960,100L0,100Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.5;
}

.service-detail-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
}

.service-detail-hero .service-tagline {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s both;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* Main Content Container */
.service-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 8% 6rem;
}

/* Service Image */
.service-image-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    margin-bottom: 4rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-image-container:hover img {
    transform: scale(1.05);
}

/* Service Description */
.service-description {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.service-description h2 {
    color: var(--navy);
    margin-bottom: 2rem;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-description h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--purple);
    border-radius: 2px;
}

.service-description p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-description p:last-child {
    margin-bottom: 0;
}

/* Features/Items Grid */
.service-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-item-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 5px solid var(--purple);
}

.service-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(106,27,154,0.1);
}

.service-item-card h3 {
    color: var(--purple);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-item-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Process Steps */
.process-steps {
    counter-reset: step-counter;
    margin: 3rem 0;
}

.process-step {
    background: white;
    padding: 2rem 2rem 2rem 4rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
    border-left: 5px solid var(--purple);
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(106,27,154,0.1);
}

.process-step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--purple);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(106,27,154,0.3);
}

.process-step h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Policy Cards */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.policy-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 5px solid var(--purple);
}

.policy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(106,27,154,0.15);
}

.policy-number {
    display: inline-block;
    background: var(--purple);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.policy-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    min-height: 3.5rem;
}

.policy-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Service Info Box */
.service-info-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.service-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.1"><path d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"/></svg>');
    background-size: cover;
}

.service-info-box h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.service-info-box p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-info-box ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.service-info-box li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
}

.service-info-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: bold;
}

/* Back Button */
.back-button-container {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #eee;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 14px 35px;
    background: var(--purple);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(106,27,154,0.2);
}

.back-button:hover {
    background: var(--purple-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(106,27,154,0.3);
}

.back-button::before {
    content: '←';
    font-size: 1.2rem;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #f8f5ff 0%, #f0ebff 100%);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
    border: 2px solid rgba(106,27,154,0.1);
}

.contact-cta h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-cta p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.cta-button.primary {
    background: var(--purple);
    color: white;
}

.cta-button.primary:hover {
    background: var(--purple-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(106,27,154,0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
}

.cta-button.secondary:hover {
    background: var(--purple);
    color: white;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-detail-hero h1 {
        font-size: 3.2rem;
    }
    
    .service-description {
        padding: 2.5rem;
    }
    
    .service-items-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .service-detail-hero {
        padding: 6rem 5% 4rem;
    }
    
    .service-detail-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-detail-hero .service-tagline {
        font-size: 1.2rem;
    }
    
    .service-detail-content {
        padding: 0 5% 4rem;
    }
    
    .service-image-container {
        height: 300px;
    }
    
    .service-description {
        padding: 2rem;
    }
    
    .service-description h2 {
        font-size: 1.8rem;
    }
    
    .service-item-card,
    .policy-card {
        padding: 2rem 1.5rem;
    }
    
    .service-info-box {
        padding: 2rem 1.5rem;
    }
    
    .contact-cta {
        padding: 3rem 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .service-detail-hero h1 {
        font-size: 2rem;
    }
    
    .service-image-container {
        height: 250px;
    }
    
    .service-items-grid,
    .policy-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    }
    
    .process-step::before {
        left: -20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
/* policies.css - Styles for policies page */

/* Policies Page Specific Styles */
.policies-page {
    background: #f8f9fc;
}

/* Hero Section */
.policies-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
    color: white;
    text-align: center;
    padding: 8rem 8% 6rem;
    position: relative;
    overflow: hidden;
}

.policies-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0L48,15C96,30,192,60,288,75C384,90,480,90,576,75C672,60,768,30,864,15L960,0L960,100L0,100Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.5;
}

.policies-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.policies-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    animation: fadeInUp 1s ease;
}

.policies-hero p {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

/* Introduction Section */
.policies-intro {
    padding: 6rem 8%;
    background: white;
}

.policies-intro .container {
    max-width: 1200px;
    margin: 0 auto;
}

.policies-intro h2 {
    color: var(--navy);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.policies-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--purple);
    border-radius: 2px;
}

.policies-intro > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #f8f5ff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
    box-shadow: 0 15px 40px rgba(106,27,154,0.1);
}

.feature-card h3 {
    color: var(--purple);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Policies Grid Section */
.policies-grid-section {
    padding: 6rem 8%;
    background: #f8f9fc;
}

.policies-grid-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    color: var(--navy);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Policies Grid */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

/* Policy Card */
.policy-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(10, 29, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animation delays */
.policy-card:nth-child(1) { animation-delay: 0.1s; }
.policy-card:nth-child(2) { animation-delay: 0.2s; }
.policy-card:nth-child(3) { animation-delay: 0.3s; }
.policy-card:nth-child(4) { animation-delay: 0.4s; }

.policy-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(106, 27, 154, 0.25);
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--purple), var(--navy));
    z-index: 2;
}

/* Policy Header */
.policy-header {
    padding: 2.5rem 2rem 1.5rem;
    background: linear-gradient(135deg, #f8f5ff 0%, #f0ebff 100%);
    border-bottom: 1px solid #e9e3ff;
}

.policy-code {
    display: inline-block;
    background: var(--purple);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.policy-header h3 {
    color: var(--navy);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

/* Policy Body */
.policy-body {
    padding: 2rem;
}

.policy-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Policy Benefits */
.policy-benefits {
    margin: 2rem 0;
}

.policy-benefits h4 {
    color: var(--navy);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.policy-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-benefits li {
    padding: 0.4rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.policy-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: bold;
}

/* Policy Details */
.policy-details {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    align-items: center;
}

.detail-label {
    color: #666;
    font-size: 0.95rem;
}

.detail-value {
    color: var(--navy);
    font-weight: 600;
    font-size: 1rem;
}

.terms-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #ddd;
    text-align: center;
}

.terms-note small {
    color: #999;
    font-style: italic;
}

/* Policy Footer */
.policy-footer {
    padding: 2rem;
    background: #f9f7ff;
    border-top: 1px solid #e9e3ff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.policy-inquiry-btn,
.policy-details-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.policy-inquiry-btn {
    background: var(--purple);
    color: white;
}

.policy-inquiry-btn:hover {
    background: var(--purple-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106,27,154,0.3);
}

.policy-details-btn {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
}

.policy-details-btn:hover {
    background: var(--purple);
    color: white;
    transform: translateY(-3px);
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 8%;
    background: white;
}

.comparison-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-section h2 {
    color: var(--navy);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.comparison-section > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-table-container {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table th {
    background: var(--navy);
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.comparison-table th:first-child {
    background: var(--purple);
    text-align: left;
}

.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    text-align: center;
    color: #555;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: #f9f7ff;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--navy);
    background: #f0f0f0;
}

/* Application Process */
.application-process {
    padding: 6rem 8%;
    background: linear-gradient(135deg, #f8f5ff 0%, #f0ebff 100%);
}

.application-process .container {
    max-width: 1200px;
    margin: 0 auto;
}

.application-process h2 {
    color: var(--navy);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.application-process > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(106,27,154,0.15);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--purple);
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Call to Action */
.policies-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    text-align: center;
    padding: 6rem 8%;
    position: relative;
    overflow: hidden;
}

.policies-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle at center, rgba(106,27,154,0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.cta-button.primary {
    background: var(--purple);
    color: white;
}

.cta-button.primary:hover {
    background: var(--purple-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106,27,154,0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--navy);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .policies-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .policies-hero h1 {
        font-size: 3.5rem;
    }
    
    .comparison-table-container {
        margin: 0 -8%;
        width: calc(100% + 16%);
    }
}

@media (max-width: 768px) {
    .policies-hero {
        padding: 6rem 5% 4rem;
    }
    
    .policies-hero h1 {
        font-size: 2.8rem;
    }
    
    .policies-hero p {
        font-size: 1.2rem;
    }
    
    .policies-intro,
    .policies-grid-section,
    .comparison-section,
    .application-process {
        padding: 4rem 5%;
    }
    
    .policies-intro h2,
    .comparison-section h2,
    .application-process h2 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .policy-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .policies-hero h1 {
        font-size: 2.2rem;
    }
    
    .policy-footer {
        flex-direction: column;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}
/* cash-policies.css - Styles for cash policies page */

/* Cash Policies Page Specific Styles */
.cash-policies-page {
    background: #f8f9fc;
}

/* Hero Section */
.cash-policies-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #4a235a 100%);
    color: white;
    text-align: center;
    padding: 8rem 8% 6rem;
    position: relative;
    overflow: hidden;
}

.cash-policies-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0L48,15C96,30,192,60,288,75C384,90,480,90,576,75C672,60,768,30,864,15L960,0L960,100L0,100Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.5;
}

.cash-policies-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cash-policies-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    animation: fadeInUp 1s ease;
}

.cash-policies-hero p {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

/* Introduction Section */
.cash-intro {
    padding: 6rem 8%;
    background: white;
}

.cash-intro .container {
    max-width: 1200px;
    margin: 0 auto;
}

.cash-intro h2 {
    color: var(--navy);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.cash-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    border-radius: 2px;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    font-size: 1.3rem;
}

/* Cash Benefits Grid */
.cash-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, #f8fff8 0%, #f0f8f0 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #27ae60;
    box-shadow: 0 20px 40px rgba(39, 174, 96, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    color: #27ae60;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Cash Policies Grid Section */
.cash-policies-grid-section {
    padding: 6rem 8%;
    background: #f8f9fc;
}

.cash-policies-grid-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    color: var(--navy);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Cash Policies Grid */
.cash-policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

/* Cash Policy Card */
.cash-policy-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(10, 29, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animation delays */
.cash-policy-card:nth-child(1) { animation-delay: 0.1s; }
.cash-policy-card:nth-child(2) { animation-delay: 0.2s; }
.cash-policy-card:nth-child(3) { animation-delay: 0.3s; }

.cash-policy-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(39, 174, 96, 0.2);
}

.policy-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
    z-index: 2;
}

/* Policy Header */
.policy-header {
    padding: 2.5rem 2rem 1.5rem;
    background: linear-gradient(135deg, #f8fff8 0%, #f0f8f0 100%);
    border-bottom: 1px solid #e0f0e0;
}

.policy-code {
    display: inline-block;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.policy-header h3 {
    color: var(--navy);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

/* Policy Body */
.policy-body {
    padding: 2rem;
}

.policy-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.policy-coverage,
.policy-premium {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8fff8;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
}

.policy-coverage h4,
.policy-premium h4,
.policy-benefits h4,
.special-features h4 {
    color: #27ae60;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.coverage-amount,
.premium-range {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--navy);
}

/* Policy Benefits */
.policy-benefits {
    margin: 2rem 0;
}

.policy-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-benefits li {
    padding: 0.4rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.policy-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Special Features */
.special-features {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f0f8ff;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.special-features h4 {
    color: #3498db;
}

.special-features p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Policy Footer */
.policy-footer {
    padding: 2rem;
    background: #f8fff8;
    border-top: 1px solid #e0f0e0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.policy-apply-btn,
.policy-call-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.policy-apply-btn {
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    color: white;
}

.policy-apply-btn:hover {
    background: linear-gradient(90deg, #219653, #27ae60);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.policy-call-btn {
    background: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
}

.policy-call-btn:hover {
    background: #27ae60;
    color: white;
    transform: translateY(-3px);
}

/* Why Cash Policies Section */
.why-cash-policies {
    padding: 6rem 8%;
    background: white;
}

.why-cash-policies .container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-cash-policies h2 {
    color: var(--navy);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reason-card {
    background: #f8f9fc;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.reason-card:hover {
    transform: translateY(-10px);
    border-color: #27ae60;
    box-shadow: 0 20px 40px rgba(39, 174, 96, 0.1);
}

.reason-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.reason-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.reason-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Policy Comparison Section */
.policy-comparison {
    padding: 6rem 8%;
    background: linear-gradient(135deg, #f8f9fc 0%, #f0f8f0 100%);
}

.policy-comparison .container {
    max-width: 1200px;
    margin: 0 auto;
}

.policy-comparison h2 {
    color: var(--navy);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.comparison-container {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.comparison-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-header {
    padding: 2rem;
    color: white;
    text-align: center;
}

.comparison-header.cash {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.comparison-header.regular {
    background: linear-gradient(135deg, var(--purple), var(--purple-hover));
}

.comparison-header h3 {
    margin: 0;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.comparison-icon {
    font-size: 2.5rem;
}

.comparison-features {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.comparison-features .feature {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
    position: relative;
    padding-left: 1.8rem;
}

.comparison-features .feature:last-child {
    border-bottom: none;
}

.comparison-features .feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.comparison-header.cash + .comparison-features .feature::before {
    color: #27ae60;
}

.comparison-header.regular + .comparison-features .feature::before {
    color: var(--purple);
}

.vs-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.vs-separator span {
    background: white;
    color: var(--navy);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-note {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #27ae60;
}

.comparison-note p {
    color: #555;
    margin: 0;
    font-size: 1.1rem;
}

/* Application Process */
.application-process {
    padding: 6rem 8%;
    background: white;
}

.application-process .container {
    max-width: 1200px;
    margin: 0 auto;
}

.application-process h2 {
    color: var(--navy);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.3);
}

.step-content h3 {
    color: var(--navy);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 8%;
    background: #f8f9fc;
}

.faq-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    color: var(--navy);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.faq-container {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fff8;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #27ae60;
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background: white;
    border-top: 2px solid #f0f0f0;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

/* Call to Action */
.cash-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #4a235a 100%);
    color: white;
    text-align: center;
    padding: 6rem 8%;
    position: relative;
    overflow: hidden;
}

.cash-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle at center, rgba(39, 174, 96, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.cta-button.primary {
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    color: white;
}

.cta-button.primary:hover {
    background: linear-gradient(90deg, #219653, #27ae60);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--navy);
    transform: translateY(-5px);
}

.cta-button.outline {
    background: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
}

.cta-button.outline:hover {
    background: #27ae60;
    color: white;
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cash-policies-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .cash-policies-hero h1 {
        font-size: 3.5rem;
    }
    
    .comparison-container {
        flex-direction: column;
    }
    
    .vs-separator {
        order: -1;
        margin: 2rem 0;
    }
}

@media (max-width: 768px) {
    .cash-policies-hero {
        padding: 6rem 5% 4rem;
    }
    
    .cash-policies-hero h1 {
        font-size: 2.8rem;
    }
    
    .cash-policies-hero p {
        font-size: 1.2rem;
    }
    
    .cash-intro,
    .cash-policies-grid-section,
    .why-cash-policies,
    .policy-comparison,
    .application-process,
    .faq-section {
        padding: 4rem 5%;
    }
    
    .cash-intro h2,
    .why-cash-policies h2,
    .policy-comparison h2,
    .application-process h2,
    .faq-section h2 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cash-policy-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .cash-benefits-grid,
    .reasons-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cash-policies-hero h1 {
        font-size: 2.2rem;
    }
    
    .policy-footer {
        flex-direction: column;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
}