/* Connector Page Styles */

/* Enhanced Top Bar Styles */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 20px;
}

.contact-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.top-bar-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.top-bar-link:hover {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

.top-bar-text {
    color: white;
    font-weight: 500;
}

.business-hours {
    display: inline-flex;
    align-items: center;
    color: white;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.business-hours:hover {
    background: rgba(255,255,255,0.15);
}

.social-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px) scale(1.1);
    color: white;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 767px) {
    .top-bar {
        padding: 10px 0;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-item {
        margin-bottom: 5px;
    }
    
    .contact-item.ms-3 {
        margin-left: 0 !important;
        margin-top: 5px;
    }
    
    .social-links {
        margin-top: 10px;
        justify-content: flex-start;
    }
}

@media (max-width: 991px) {
    .top-bar .row {
        flex-direction: column;
    }
    
    .top-bar .col-md-6 {
        text-align: center !important;
        margin-bottom: 5px;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 8px;
    }
}


/* Hero Section */
.partner-hero {
    background: linear-gradient(rgba(30, 55, 153, 0.85), rgba(9, 132, 227, 0.9)), url('../images/connector/Unlock.avif');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    position: relative;
    border-radius: 0 0 50px 50px;
    margin-bottom: 60px;
}

.partner-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.partner-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.partner-hero .btn-primary {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    background: var(--gradient-secondary);
    border: none;
    box-shadow: 0 4px 15px rgba(0,184,148,0.3);
    transition: all 0.3s ease;
}

.partner-hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,184,148,0.4);
}

/* Partner Benefits Section */
.partner-benefits {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-radius: 20px;
    margin-bottom: 60px;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Partner Registration Form */
.partner-registration-section {
    padding: 80px 0;
    background-color: white;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.section-divider {
    height: 4px;
    width: 60px;
    background: var(--gradient-secondary);
    margin: 25px auto 0;
    border-radius: 2px;
}

.card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 8px;
}

.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #e1e5ea;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(9, 132, 227, 0.1);
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 25px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(9, 132, 227, 0.2);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-card:before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: -10px;
    left: 20px;
    color: rgba(9, 132, 227, 0.1);
    font-family: Georgia, serif;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--primary-color);
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 500;
    color: var(--primary-color);
    background-color: white;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background-color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(9, 132, 227, 0.1);
}

.accordion-body {
    padding: 20px 25px;
    color: #6c757d;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 55, 153, 0.9) 0%, rgba(9, 132, 227, 0.9) 100%), url('../images/connector/Unlock.avif');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    border-radius: 20px;
    margin: 0 20px 60px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-section .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    background: var(--gradient-secondary);
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .partner-hero {
        padding: 60px 0;
        border-radius: 0 0 30px 30px;
    }
    
    .partner-hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefit-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .partner-hero {
        padding: 50px 0;
        border-radius: 0 0 20px 20px;
    }
    
    .partner-hero h1 {
        font-size: 1.8rem;
    }
    
    .partner-hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
}