/* Credit Cards Page Specific Styles */

/* Hero Section */
.credit-cards-hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 0px 0;
    position: relative;
    overflow: hidden;
  }
  
  .credit-cards-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .credit-cards-hero .lead {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .feature-item i {
    color: #4dabf7;
  }
  

  
  /* Featured Cards */
/* Neuro-Design Credit Cards */
.neuro-credit-cards {
    padding: 80px 0;
    background: radial-gradient(circle at 10% 20%, rgba(248, 250, 252, 0.9) 0%, rgba(241, 245, 249, 0.9) 100%);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
    
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.2;
    
  }
  
  .highlight {
    color: #3b82f6;
    position: relative;
  }
  
  .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(59, 130, 246, 0.2);
    z-index: -1;
    border-radius: 3px;
  }
  
  .subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .card-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
  }
  
  .card-carousel::-webkit-scrollbar {
    display: none;
  }
  
  .neuro-card {
    min-width: 340px;
    flex: 1;
    scroll-snap-align: start;
    position: relative;
  }
  
  .neuro-card.primary {
    min-width: 380px;
  }
  
  .card-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    /* background: linear-gradient(45deg, #3b82f6, #6366f1); */
    border-radius: 20px;
    z-index: 0;
    filter: blur(20px);
    opacity: 0.3;
    animation: pulse-glow 6s infinite alternate;
  }
  
  @keyframes pulse-glow {
    0% { opacity: 0.2; }
    100% { opacity: 0.4; }
  }
  
  .card-face {
    position: relative;
    z-index: 2;
    height: 100%;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  }
  
  .neuro-card:hover .card-face {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .neuro-card.primary .card-face {
    border: 1px solid rgba(59, 130, 246, 0.2);
  }
  
  .card-corner-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .card-corner-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  }
  
  .card-badge {
    display: inline-block;
    background: linear-gradient(45deg, #3b82f6, #6366f1);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .neuro-card[data-card-type="cashback"] .card-badge {
    background: linear-gradient(45deg, #10b981, #059669);
  }
  
  .neuro-card[data-card-type="premium"] .card-badge {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
  }
  
  .card-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
  }
  
  .card-tagline {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(241, 245, 249, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  .benefit:hover {
    background: rgba(241, 245, 249, 0.9);
    transform: translateY(-2px);
  }
  
  .benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
  }
  
  .benefit-text {
    display: flex;
    flex-direction: column;
  }
  
  .benefit-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
  }
  
  .benefit-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 3px;
  }
  
  .value-proposition {
    margin: 25px 0;
  }
  
  .value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #475569;
  }
  
  .value-item i {
    color: #10b981;
  }
  
  .card-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1e293b;
    color: white;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
  }
  
  .cta-button i {
    transition: transform 0.3s ease;
  }
  
  .cta-button:hover i {
    transform: translateX(3px);
  }
  
  .cta-button.pulse {
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
  }
  
  .neuro-card[data-card-type="cashback"] .cta-button:hover {
    background: #10b981;
  }
  
  .neuro-card[data-card-type="premium"] .cta-button:hover {
    background: #8b5cf6;
  }
  
  .approval-rate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #64748b;
  }
  
  .approval-rate i {
    color: #f59e0b;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .section-header h2 {
      font-size: 2rem;
    }
    
    .card-carousel {
      gap: 15px;
    }
    
    .neuro-card {
      min-width: 300px;
    }
    
    .neuro-card.primary {
      min-width: 320px;
    }
  }
  
  @media (max-width: 480px) {
    .neuro-credit-cards {
      padding: 60px 0;
    }
    
    .section-header h2 {
      font-size: 1.8rem;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
    }
  }
  
  
  /* Comparison Tool */
  .comparison-tool {
    padding: 60px 0;
    background-color: #f8f9fa;
  }
  
  .comparison-container {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
  }
  
  .comparison-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .slot {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .slot-placeholder {
    text-align: center;
    color: #6c757d;
  }
  
  .slot-placeholder i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
    color: #adb5bd;
  }
  
  .card-selector {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .card-selector h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
  }
  
  .card-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .card-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .card-option:hover {
    background: #e9ecef;
  }
  
  .card-option img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }
  
  .card-option span {
    font-size: 0.9rem;
  }
  
  .comparison-results {
    overflow-x: auto;
  }
  
  .comparison-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .comparison-table th, .comparison-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
  }
  
  .comparison-table th {
    background: #f8f9fa;
    font-weight: 600;
  }
  
  .comparison-table tr:hover {
    background: #f8f9fa;
  }
  
  /* Benefits Section */
  .benefits-section {
    padding: 60px 0;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }
  
  .benefit-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #007bff;
  }
  
  .benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  
  .benefit-card p {
    color: #6c757d;
    margin-bottom: 0;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
  }
  
  .accordion-item {
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
    border: 1px solid #dee2e6;
  }
  
  .accordion-button {
    font-weight: 500;
    padding: 15px 20px;
  }
  
  .accordion-button:not(.collapsed) {
    background-color: rgba(0, 123, 255, 0.05);
    color: #007bff;
  }
  
  .accordion-body {
    padding: 20px;
  }
  
  .accordion-body ul, .accordion-body ol {
    padding-left: 20px;
    margin-bottom: 0;
  }
  
  .accordion-body li {
    margin-bottom: 8px;
  }
  
  .table {
    margin-top: 15px;
  }
  
  .table th {
    background: #f8f9fa;
  }
  
  /* Application CTA */
  .application-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    text-align: center;
  }
  
  .application-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .application-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
  }
  
  .btn-light {
    background: white;
    color: #007bff;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #0056b3;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .credit-cards-hero h1 {
      font-size: 2rem;
    }
    
    .hero-features {
      grid-template-columns: 1fr;
    }
    
    .comparison-slots {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .credit-cards-hero {
      padding: 60px 0;
    }
    
    .credit-cards-hero h1 {
      font-size: 1.75rem;
    }
    
    .credit-cards-hero .lead {
      font-size: 1.1rem;
    }
    
    .categories-grid {
      grid-template-columns: 1fr;
    }
    
    .cards-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 576px) {
    .credit-cards-hero h1 {
      font-size: 1.5rem;
    }
    
    .card-footer {
      flex-direction: column;
    }
    
    .btn-apply, .btn-outline-compare {
      width: 100%;
    }
  }