/* Custom styles for the redesigned homepage */

/* Launching Soon Badges */
.launching-badge {
    margin-bottom: 15px;
}

.launching-badge .badge {
    background: linear-gradient(45deg, #007bff, #6f42c1);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 5px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Region Lists */
.region-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.region-list li {
    padding: 3px 0;
    color: #555;
    font-size: 14px;
}

/* Payment Features Box */
.payment-features-box {
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.payment-features-box h6 {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Feature Items for Why Choose Us */
.feature-item {
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-item h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Info Items */
.contact-info-item {
    padding: 30px 20px;
}

.contact-info-item .contact-icon {
    margin-bottom: 20px;
}

.contact-info-item .contact-icon i {
    font-size: 48px;
    color: #007bff;
}

.contact-info-item h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-item p {
    color: #666;
    font-size: 16px;
}

/* Enhanced Subscription Form */
.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .section-title .sub-title {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-section .section-title .title-main {
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-section .section-title .description {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.subscription-form {
    background: #fff;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 50px 40px;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.subscription-form:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.subscription-form .form-control {
    border: 2px solid #e9ecef;
    padding: 18px 20px;
    font-size: 16px;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.subscription-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.3rem rgba(0, 123, 255, 0.15);
    background: #fff;
    transform: translateY(-2px);
}

.subscription-form .form-control::placeholder {
    color: #6c757d;
    font-weight: 400;
}

.subscription-form .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    background: linear-gradient(45deg, #007bff, #6f42c1);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscription-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(45deg, #0056b3, #5a2d91);
}

.subscription-form .btn:active {
    transform: translateY(-1px);
}

/* Form enhancement elements */
.subscription-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #007bff, #6f42c1, #28a745, #ffc107);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.subscription-form:hover::before {
    opacity: 0.1;
}

/* Form title enhancement */
.subscription-form-title {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
    font-size: 24px;
}

.subscription-form-subtitle {
    text-align: center;
    margin-bottom: 35px;
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
}

/* Service Items Enhancement */
.service-item.style-one {
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

.service-item.style-one:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Hero Section Enhancements */
.hero-desc p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}

/* Button Spacing */
.mrr-15 {
    margin-right: 15px;
}

/* Section Spacing */
.mrt-30 {
    margin-top: 30px;
}

.mrb-60 {
    margin-bottom: 60px;
}

.mrt-60 {
    margin-top: 60px;
}

/* Footer Tagline */
.footer-tagline p {
    font-size: 16px;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-item {
        margin-bottom: 20px;
    }
    
    .payment-features-box {
        margin-top: 30px;
    }
    
    .hero-desc p {
        font-size: 16px;
    }
    
    .subscription-form {
        padding: 30px 20px !important;
    }
    
    .contact-info-item {
        margin-bottom: 30px;
    }
}

/* Additional utility classes */
.bg-gradient {
    background: linear-gradient(45deg, #007bff, #6f42c1);
}

.text-white {
    color: #fff !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.h-100 {
    height: 100% !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.radius-4 {
    border-radius: 0.375rem !important;
}

/* Lead text styling */
.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

/* About section text styling improvements */
.about-block .title-text p {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Increase space between about text and button */
.about-block .form-group-btn {
    margin-top: 40px;
}

/* Value items styling */
.value-item {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.value-item h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.value-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Values section background fix */
.about-block .row.mrt-60 {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 20px;
    border-radius: 10px;
    margin: 60px 0;
}

/* Payments section improvements */
.about-block.pd-b-130 {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 0 130px 0;
}

.about-block.pd-b-130 .our-content-area {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.about-block.pd-b-130 .title-text p {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
}

.about-block.pd-b-130 .title-text p.lead {
    font-size: 18px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 30px;
    border-left: 4px solid #007bff;
    padding-left: 20px;
}

.about-block.pd-b-130 .title-text p strong {
    color: #007bff;
    font-weight: 600;
}

/* Enhanced Payment Features Box */
.payment-features-box {
    background: #fff;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
}

.payment-features-box h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 20px;
    text-align: center;
    border-bottom: 2px solid #007bff;
    padding-bottom: 15px;
}

.payment-features-box .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-features-box .feature-list li {
    padding: 12px 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid #f8f9fa;
    position: relative;
    padding-left: 25px;
}

.payment-features-box .feature-list li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 12px;
}

.payment-features-box .feature-list li:last-child {
    border-bottom: none;
}

/* Section title improvements for payments */
.about-block.pd-b-130 .section-title {
    margin-bottom: 50px;
}

.about-block.pd-b-130 .section-title .title-main {
    color: #2c3e50;
    font-weight: 700;
}

/* Solutions in Action Page Styles */

/* Step Numbers for Process Section */
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #007bff, #6f42c1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Solution Content Styling */
.solution-content {
    padding: 30px;
}

.solution-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 28px;
}

.solution-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

.solution-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

.solution-btn {
    margin-top: 30px;
}

/* Featured Solutions Section Spacing */
.mrb-80 {
    margin-bottom: 80px;
}

/* Final CTA Section */
.bg-primary {
    background: linear-gradient(135deg, #007bff 0%, #6f42c1 100%) !important;
}

.btn-white {
    background: #fff;
    color: #007bff;
    border: 2px solid #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

/* Enhanced Contact Form for Solutions Page */
.contact-section .subscription-form {
    background: #fff;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    padding: 50px 40px;
}

.contact-section .form-control {
    border: 2px solid #e9ecef;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-section .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

.contact-section textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Mobile Responsiveness for Solutions Page */
@media (max-width: 768px) {
    .solution-content {
        padding: 20px 0;
        margin-top: 30px;
    }
    
    .solution-title {
        font-size: 24px;
    }
    
    .mrb-80 {
        margin-bottom: 50px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Hero Section for Solutions Page */
.frontpage-banner-content.text-center {
    text-align: center;
}

.frontpage-banner-content.text-center .hero-title {
    margin-bottom: 30px;
}

.frontpage-banner-content.text-center .lead {
    font-size: 20px;
    font-weight: 300;
    color: #666;
    margin-bottom: 40px;
}
