/* Credit Card Banner Section */
.index-credit-card-banner {
    background: linear-gradient(135deg, #0a0e17 0%, #121a2a 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(230, 184, 0, 0.1);
}

.index-credit-card-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
}

.index-credit-card-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.index-credit-card-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 25px;
}

.index-credit-card-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

.index-credit-card-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #CFB53B);
    color: #121212;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(230, 184, 0, 0.4);
}

.index-credit-card-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(230, 184, 0, 0.6);
}

.index-credit-card-visual {
    position: relative;
    perspective: 1000px;
}

.index-credit-card-image {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(230, 184, 0, 0.2);
    transform: rotateY(-10deg);
    transition: transform 0.5s ease;
}

.index-credit-card-visual:hover .index-credit-card-image {
    transform: rotateY(-5deg) scale(1.03);
}

.index-credit-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(230, 184, 0, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
    transform: translate(-50%, -50%);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .index-credit-card-container {
        gap: 40px;
    }
    
    .index-credit-card-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .index-credit-card-banner {
        padding: 80px 20px;
    }
    
    .index-credit-card-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .index-credit-card-visual {
        order: -1;
        margin-bottom: 40px;
    }
    
    .index-credit-card-image {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .index-credit-card-heading {
        font-size: 2rem;
    }
    
    .index-credit-card-subtitle {
        font-size: 1.1rem;
    }
    
    .index-credit-card-cta {
        padding: 14px 30px;
        font-size: 1rem;
    }
}



/* Credit Card Features Section */
.index-credit-card-features {
    background: linear-gradient(135deg, #0a0e17 0%, #121a2a 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(230, 184, 0, 0.1);
}

.index-credit-card-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
}

.index-credit-card-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.index-credit-card-features-heading {
    text-align: center;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 60px;
    font-weight: 700;
}

.index-credit-card-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.index-credit-card-features-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(230, 184, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.index-credit-card-features-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 184, 0, 0.2);
    border-color: rgba(230, 184, 0, 0.4);
}

.index-credit-card-features-card-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(230, 184, 0, 0.1);
    position: relative;
}

.index-credit-card-features-card-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.index-credit-card-features-card-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.1rem;
}

.index-credit-card-features-card-image {
    height: 180px;
    width: 100%;
    object-fit: contain;
    padding: 20px;
    background: linear-gradient(135deg, rgba(19, 26, 45, 0.8) 0%, rgba(10, 14, 23, 0.9) 100%);
}

.index-credit-card-features-card-body {
    padding: 25px 30px;
    flex-grow: 1;
}

.index-credit-card-features-card-section-title {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.index-credit-card-features-card-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.index-credit-card-features-card-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.index-credit-card-features-card-list li::before {
    content: '•';
    color: var(--primary);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
}

.index-credit-card-features-card-cta {
    display: block;
    text-align: center;
    background: rgba(230, 184, 0, 0.1);
    color: var(--primary);
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 184, 0, 0.2);
}

.index-credit-card-features-card-cta:hover {
    background: rgba(230, 184, 0, 0.2);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .index-credit-card-features-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .index-credit-card-features-heading {
        font-size: 2.2rem;
    }
    
    .index-credit-card-features-card-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .index-credit-card-features {
        padding: 60px 20px;
    }
    
    .index-credit-card-features-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .index-credit-card-features-card-header,
    .index-credit-card-features-card-body {
        padding: 20px;
    }
}