/* 
---------------------------------------------
Custom Styles for ProfitRiseApp
---------------------------------------------
Additional styles for improved spacing and layout
*/

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0 60px 0;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.page-header .inner-header h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header .inner-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Spacing Improvements */
.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background-color: #f8f9fa;
}

/* Content Block Improvements */
.policy-content {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.policy-content h4 {
    color: #333;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 40px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

.policy-content h4:first-child {
    margin-top: 0;
}

.policy-content h5 {
    color: #555;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 30px;
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.policy-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #666;
}

.policy-content ul li strong {
    color: #333;
    font-weight: 600;
}

/* About Page Specific Styles */
#about-section-1,
#about-section-2,
#about-section-3,
#about-section-4 {
    padding: 80px 0;
}

#about-section-1 .right-text,
#about-section-3 .right-text {
    padding-left: 40px;
}

#about-section-2 .left-text,
#about-section-4 .left-text {
    padding-right: 40px;
}

/* Services Page Specific Styles */
#service-1,
#service-2,
#service-3,
#service-4 {
    padding: 80px 0;
}

#service-1 .right-text,
#service-3 .right-text {
    padding-left: 40px;
}

#service-2 .left-text,
#service-4 .left-text {
    padding-right: 40px;
}

/* Contact Page Specific Styles */
#contact-block-1,
#contact-block-2,
#contact-block-3 {
    padding: 80px 0;
}

#contact-block-1 .right-text,
#contact-block-3 .right-text {
    padding-left: 40px;
}

#contact-block-2 .left-text {
    padding-right: 40px;
}

/* Contact Form Improvements */
#contact-form {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
}

#contact-form .section-heading h2 {
    color: white;
    margin-bottom: 20px;
}

#contact-form .section-heading p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
}

#contact-form .contact-form {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

#contact-form .contact-form input,
#contact-form .contact-form textarea,
#contact-form .contact-form select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}

#contact-form .contact-form input:focus,
#contact-form .contact-form textarea:focus,
#contact-form .contact-form select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

/* Call to Action Section */
#cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

#cta .cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#cta .cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Improvements */
footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px 0;
}

footer .footer-widget {
    margin-bottom: 40px;
}

footer .footer-widget h4 {
    color: #667eea;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

footer .footer-widget p {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 20px;
}

footer .footer-links li {
    margin-bottom: 12px;
}

footer .footer-links li a {
    color: #bdc3c7;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
}

footer .footer-links li a:hover {
    color: #667eea;
    transform: translateX(5px);
}

/* Logo Styles */
.logo img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Button Improvements */
.main-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    padding: 15px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.main-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Image Improvements */
.section img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.section img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Text Improvements */
.left-heading h5 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.left-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* List Improvements */
.left-text ul li {
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.left-text ul li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.left-text ul li img {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    float: left;
}

.left-text ul li .text {
    overflow: hidden;
}

.left-text ul li .text h6 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.left-text ul li .text p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Improvements */
@media (max-width: 991px) {
    .page-header .inner-header h3 {
        font-size: 36px;
    }
    
    .page-header .inner-header p {
        font-size: 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .policy-content {
        padding: 30px;
    }
    
    #about-section-1 .right-text,
    #about-section-3 .right-text,
    #service-1 .right-text,
    #service-3 .right-text,
    #contact-block-1 .right-text,
    #contact-block-3 .right-text {
        padding-left: 0;
        margin-top: 40px;
    }
    
    #about-section-2 .left-text,
    #about-section-4 .left-text,
    #service-2 .left-text,
    #service-4 .left-text,
    #contact-block-2 .left-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px 0;
    }
    
    .page-header .inner-header h3 {
        font-size: 28px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .left-heading h5 {
        font-size: 24px;
    }
    
    #cta .cta-content h2 {
        font-size: 32px;
    }
}

/* Animation Improvements */
[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
} 