@import url('base.css');
@import url('components.css');

/* Partners & Compliance Page Specific Styles */

/* Partners Hero Section */
.rupeeget-partners-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--rupeeget-accent) 0%, var(--rupeeget-primary) 100%);
}

.rupeeget-partners-hero .rupeeget-hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.rupeeget-partners-hero .rupeeget-hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Partnership Model Section */
.rupeeget-partnership-model {
    padding: 6rem 0;
    background: var(--rupeeget-white);
}

.rupeeget-partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rupeeget-partnership-text {
    padding-right: 2rem;
}

.rupeeget-partnership-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--rupeeget-gray-700);
    margin-bottom: 2rem;
}

.rupeeget-partnership-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rupeeget-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--rupeeget-orange-light);
    border-radius: var(--rupeeget-radius-sm);
    transition: var(--rupeeget-transition);
}

.rupeeget-benefit-item:hover {
    background: var(--rupeeget-orange-peach);
    transform: translateX(4px);
}

.rupeeget-benefit-item span:last-child {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--rupeeget-gray-700);
}

.rupeeget-partnership-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--rupeeget-radius);
    box-shadow: var(--rupeeget-shadow);
}

/* NBFC Partners Section */
.rupeeget-nbfc-partners {
    padding: 6rem 0;
    background: var(--rupeeget-orange-peach);
}

.rupeeget-nbfc-header {
    text-align: center;
    margin-bottom: 4rem;
}

.rupeeget-nbfc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.rupeeget-nbfc-card {
    background: var(--rupeeget-white);
    padding: 3rem 2rem;
    border-radius: var(--rupeeget-radius);
    box-shadow: var(--rupeeget-shadow-light);
    transition: var(--rupeeget-transition);
    position: relative;
    overflow: hidden;
}

.rupeeget-nbfc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rupeeget-primary), var(--rupeeget-warning));
}

.rupeeget-nbfc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--rupeeget-shadow);
}

.rupeeget-nbfc-logo {
    width: 120px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rupeeget-orange-light);
    border-radius: var(--rupeeget-radius-sm);
}

.rupeeget-nbfc-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.rupeeget-nbfc-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rupeeget-gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.rupeeget-nbfc-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--rupeeget-gray-700);
    margin-bottom: 2rem;
    text-align: center;
}

.rupeeget-nbfc-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rupeeget-detail-item {
    font-size: 0.9rem;
    color: var(--rupeeget-gray-700);
    line-height: 1.5;
}

.rupeeget-detail-item a {
    color: var(--rupeeget-primary);
    text-decoration: none;
    font-weight: 500;
}

.rupeeget-detail-item a:hover {
    text-decoration: underline;
}

/* Compliance Framework Section */
.rupeeget-compliance-framework {
    padding: 6rem 0;
    background: var(--rupeeget-white);
}

.rupeeget-compliance-header {
    text-align: center;
    margin-bottom: 4rem;
}

.rupeeget-compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.rupeeget-compliance-card {
    background: var(--rupeeget-white);
    padding: 2.5rem 2rem;
    border-radius: var(--rupeeget-radius);
    box-shadow: var(--rupeeget-shadow-light);
    text-align: center;
    transition: var(--rupeeget-transition);
    position: relative;
    overflow: hidden;
}

.rupeeget-compliance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rupeeget-primary), var(--rupeeget-warning));
}

.rupeeget-compliance-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--rupeeget-shadow);
}

.rupeeget-compliance-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    color: var(--rupeeget-gray-900);
}

.rupeeget-compliance-description {
    color: var(--rupeeget-gray-700);
    line-height: 1.6;
    margin: 0;
}

/* Regulatory Information Section */
.rupeeget-regulatory-info {
    padding: 6rem 0;
    background: var(--rupeeget-gray-100);
}

.rupeeget-regulatory-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rupeeget-regulatory-text {
    padding-right: 2rem;
}

.rupeeget-regulatory-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--rupeeget-gray-700);
    margin-bottom: 2rem;
}

.rupeeget-regulatory-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rupeeget-regulatory-point {
    background: var(--rupeeget-white);
    padding: 1.5rem;
    border-radius: var(--rupeeget-radius);
    box-shadow: var(--rupeeget-shadow-light);
    transition: var(--rupeeget-transition);
}

.rupeeget-regulatory-point:hover {
    transform: translateY(-2px);
    box-shadow: var(--rupeeget-shadow);
}

.rupeeget-regulatory-point h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--rupeeget-gray-900);
    margin-bottom: 0.5rem;
}

.rupeeget-regulatory-point p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--rupeeget-gray-700);
    margin: 0;
}

.rupeeget-regulatory-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--rupeeget-radius);
    box-shadow: var(--rupeeget-shadow);
}

/* Security Measures Section */
.rupeeget-security-measures {
    padding: 6rem 0;
    background: var(--rupeeget-white);
}

.rupeeget-security-header {
    text-align: center;
    margin-bottom: 4rem;
}

.rupeeget-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.rupeeget-security-item {
    background: var(--rupeeget-orange-light);
    padding: 2.5rem 2rem;
    border-radius: var(--rupeeget-radius);
    text-align: center;
    transition: var(--rupeeget-transition);
    position: relative;
    overflow: hidden;
}

.rupeeget-security-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rupeeget-primary), var(--rupeeget-warning));
}

.rupeeget-security-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--rupeeget-shadow);
    background: var(--rupeeget-white);
}

.rupeeget-security-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    color: var(--rupeeget-gray-900);
}

.rupeeget-security-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--rupeeget-gray-700);
    margin: 0;
}

/* Contact Compliance Section */
.rupeeget-contact-compliance {
    padding: 6rem 0;
    background: var(--rupeeget-orange-peach);
}

.rupeeget-contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.rupeeget-contact-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--rupeeget-gray-700);
    margin-bottom: 2rem;
}

.rupeeget-contact-details {
    background: var(--rupeeget-white);
    padding: 2rem;
    border-radius: var(--rupeeget-radius);
    box-shadow: var(--rupeeget-shadow-light);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rupeeget-contact-item {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--rupeeget-gray-700);
}

.rupeeget-contact-item a {
    color: var(--rupeeget-primary);
    text-decoration: none;
    font-weight: 500;
}

.rupeeget-contact-item a:hover {
    text-decoration: underline;
}

/* CTA Section */
.rupeeget-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--rupeeget-primary) 0%, var(--rupeeget-warning) 100%);
    color: var(--rupeeget-white);
    text-align: center;
}

.rupeeget-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.rupeeget-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.rupeeget-cta-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.rupeeget-cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animation Classes */
.rupeeget-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.rupeeget-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.rupeeget-slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.rupeeget-slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.rupeeget-slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.rupeeget-slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rupeeget-partnership-content,
    .rupeeget-regulatory-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rupeeget-partnership-text,
    .rupeeget-regulatory-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .rupeeget-partners-hero .rupeeget-hero-title {
        font-size: 2.5rem;
    }
    
    .rupeeget-nbfc-grid {
        grid-template-columns: 1fr;
    }
    
    .rupeeget-compliance-grid,
    .rupeeget-security-grid {
        grid-template-columns: 1fr;
    }
    
    .rupeeget-cta-title {
        font-size: 2rem;
    }
    
    .rupeeget-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .rupeeget-partners-hero .rupeeget-hero-title {
        font-size: 2rem;
    }
    
    .rupeeget-nbfc-card,
    .rupeeget-compliance-card,
    .rupeeget-security-item {
        padding: 2rem 1.5rem;
    }
    
    .rupeeget-contact-details {
        padding: 1.5rem;
    }
}


