/* style.css - Loan Processing Advisors LLC */

/* Root Variables */
:root {
    --primary-color: #e57125;
    --secondary-color: #1a1a2e;
    --accent-color: #f5f5f5;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-radius: 10px;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sintony', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Dosis', sans-serif;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #c55a1e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 113, 37, 0.3);
}

.btn-outline-secondary {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link {
    color: var(--text-color) !important;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a3e 100%);
    color: white;
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
}

.hero-section h1 {
    font-weight: 700;
    line-height: 1.2;
}

.hero-section .text-primary {
    color: var(--primary-color) !important;
}

.badge-custom {
    background: rgba(229, 113, 37, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.badge-custom i {
    margin-right: 5px;
}

.feature-list {
    margin: 30px 0;
}

.feature-item {
    margin: 10px 0;
    font-size: 16px;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.contact-link:hover {
    color: var(--primary-color);
}

.hero-image-wrapper {
    position: relative;
}

.stats-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

.stats-card h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 5px;
}

.stats-card p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.card-1 {
    top: 50px;
    right: -30px;
}

.card-2 {
    bottom: 50px;
    left: -30px;
}

/* Vision Section */
.vision-section {
    background: #f8f9fa;
    position: relative;
}

.value-card {
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(229, 113, 37, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-wrapper i {
    font-size: 30px;
    color: var(--primary-color);
}

/* Transformation Section */
.transformation-section {
    background: white;
}

.progress {
    height: 8px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background: var(--primary-color);
    border-radius: 10px;
    transition: width 2s ease;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
}

.experience-badge h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

/* Numbers Section */
.numbers-section {
    background: var(--light-bg);
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-card h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin: 10px 0;
}

/* Services Section */
.services-section {
    background: white;
}

.service-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

/* Partners Section */
/* Section removed */

/* Testimonials Section */
.testimonials-section {
    background: white;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stars i {
    color: #ffc107;
    margin-right: 2px;
}

/* How We Work Section */
.how-we-work {
    background: var(--light-bg);
}

.process-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: rgba(229, 113, 37, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(229, 113, 37, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.process-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    background: white;
}

.nav-tabs {
    border: none;
}

.nav-tabs .nav-link {
    border: none;
    background: var(--light-bg);
    margin: 0 5px;
    border-radius: 5px;
    padding: 10px 20px;
    color: var(--text-color);
}

.nav-tabs .nav-link.active {
    background: var(--primary-color);
    color: white;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accordion-button {
    background: var(--light-bg);
    font-weight: 500;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

/* CTA Section */
.cta-section {
    background: var(--light-bg);
}

/* Contact Section */
.contact-section {
    background: white;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 15px;
}

.info-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 5px;
}

.form-control {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 5px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(229, 113, 37, 0.1);
}

/* Footer */
.footer-section {
    background: var(--secondary-color);
}

.footer-section h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section ul li {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
        padding: 20px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 10px;
    }
    
    .navbar-collapse {
        background: white;
        margin-top: 15px;
        padding: 20px;
        border-radius: var(--border-radius);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .hero-section {
        text-align: center;
        padding: 100px 15px 50px;
    }
    
    .hero-section .row {
        margin: 0;
    }
    
    .stats-card {
        position: static;
        margin: 20px auto;
        max-width: 200px;
    }
    
    .footer-section .col-lg-4 {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .contact-section .col-lg-6 {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-section {
        padding-top: 80px;
        min-height: auto;
    }
    
    .hero-section .display-3 {
        font-size: 2rem;
    }
    
    .experience-badge {
        position: static;
        margin: 20px auto;
        max-width: 150px;
    }
    
    .value-card,
    .stat-card,
    .service-card,
    .testimonial-card,
    .process-card {
        margin-bottom: 20px;
    }
    
    .transformation-section .image-wrapper {
        margin-top: 30px;
    }
    
    .numbers-section,
    .services-section,
    .testimonials-section,
    .faq-section {
        padding: 40px 0;
    }
    
    section {
        overflow-x: hidden;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c55a1e;
}