/* ============================================
   CONVERSION FEATURES CSS
   ============================================ */

/* Get Free Quote Sticky Button */
.quote-sticky-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    background: linear-gradient(135deg, #0055FF 0%, #00c6ff 100%);
    color: #fff;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(0, 85, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    animation: pulse-glow 2s infinite;
}

.quote-sticky-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 85, 255, 0.5);
    color: #fff;
    text-decoration: none;
}

.quote-sticky-btn i {
    font-size: 20px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 85, 255, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(0, 85, 255, 0.6);
    }
}

@media (max-width: 768px) {
    .quote-sticky-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px 22px;
        font-size: 14px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00194C 0%, #0055FF 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 9997;
    box-shadow: 0 4px 15px rgba(0, 25, 76, 0.3);
    border: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 25, 76, 0.4);
    color: #fff;
}

.back-to-top i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Quick Quote Modal */
.quick-quote-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.quick-quote-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quick-quote-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quick-quote-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.quick-quote-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.quick-quote-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #00194C;
    margin-bottom: 10px;
}

.quick-quote-content p {
    color: #666;
    margin-bottom: 30px;
}

.quick-quote-form .form-group {
    margin-bottom: 20px;
}

.quick-quote-form label {
    display: block;
    font-weight: 600;
    color: #00194C;
    margin-bottom: 8px;
    font-size: 14px;
}

.quick-quote-form input,
.quick-quote-form select,
.quick-quote-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
}

.quick-quote-form input:focus,
.quick-quote-form select:focus,
.quick-quote-form textarea:focus {
    outline: none;
    border-color: #0055FF;
    box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.1);
}

.quick-quote-form .btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0055FF 0%, #00c6ff 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.quick-quote-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 85, 255, 0.3);
}

/* Error message styling for quick quote form */
.quick-quote-form .help-block,
.quick-quote-form label.error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: block;
    font-weight: normal;
}

.quick-quote-form input.error,
.quick-quote-form select.error,
.quick-quote-form textarea.error {
    border-color: #dc3545;
}

.quick-quote-form input.error:focus,
.quick-quote-form select.error:focus,
.quick-quote-form textarea.error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Exit Intent Popup */
.exit-intent-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.exit-intent-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.exit-popup-content {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: popupSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.exit-popup-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.exit-popup-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #00194C;
    margin-bottom: 15px;
}

.exit-popup-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}

.exit-popup-form input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.exit-popup-form input:focus {
    outline: none;
    border-color: #0055FF;
    box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.1);
}

.exit-popup-form .btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0055FF 0%, #00c6ff 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.exit-popup-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 85, 255, 0.3);
}

.exit-popup-form .skip-link {
    display: block;
    margin-top: 15px;
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.exit-popup-form .skip-link:hover {
    color: #0055FF;
}

/* Trust Badges Section */
.trust-badges {
    background: #f8faff;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.trust-badges .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.trust-badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.trust-badge-item i {
    font-size: 32px;
    color: #0055FF;
}

.trust-badge-item .badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #00194C;
}

/* Newsletter Signup */
.newsletter-section {
    background: linear-gradient(135deg, #00194C 0%, #0055FF 100%);
    padding: 60px 0;
    color: #fff;
}

.newsletter-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff !important;
}

.newsletter-content p {
    font-size: 16px;
    opacity: 1 !important;
    color: #fff !important;
    font-weight: 500;
    margin-bottom: 30px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.95) !important;
    opacity: 1 !important;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 15px;
    transition: all 0.3s;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn-subscribe {
    padding: 14px 28px;
    background: #fff;
    color: #0055FF;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-form .btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .btn-subscribe {
        width: 100%;
    }
}

/* Process Section Styles */
.process-area {
    background: #f8faff;
}

.process-item {
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.process-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #0055FF 0%, #00c6ff 100%);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.process-item:hover::before {
    transform: scaleX(1);
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 85, 255, 0.15);
}

.process-number {
    font-size: 80px;
    font-weight: 900;
    color: rgba(0, 25, 76, 0.05);
    line-height: 1;
    margin-bottom: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 0;
}

.process-icon {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.process-icon i {
    font-size: 60px;
    background: linear-gradient(135deg, #0055FF 0%, #00c6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    transition: transform 0.3s;
}

.process-item:hover .process-icon i {
    transform: scale(1.1) rotate(5deg);
}

.process-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #00194C;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.process-item p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

/* Technology Stack Styles */
.tech-stack-area {
    background: #fff;
}

.tech-category {
    background: #f8faff;
    padding: 30px 25px;
    border-radius: 16px;
    border: 2px solid #e8f0fe;
    transition: all 0.3s;
    height: 100%;
}

.tech-category:hover {
    border-color: #0055FF;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 85, 255, 0.1);
}

.tech-category-title {
    font-size: 20px;
    font-weight: 700;
    color: #00194C;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    color: #0055FF;
    border: 2px solid #e8f0fe;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.tech-tag:hover {
    background: linear-gradient(135deg, #0055FF 0%, #00c6ff 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 85, 255, 0.2);
}

/* Pricing Guide Styles */
.pricing-guide-area {
    background: #f8faff;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 85, 255, 0.15);
    border-color: #0055FF;
}

.pricing-card.featured {
    border-color: #0055FF;
    background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #0055FF 0%, #00c6ff 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: #00194C;
    margin-bottom: 15px;
}

.pricing-range {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #0055FF 0%, #00c6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-features li {
    padding: 12px 0;
    color: #666;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: #00c6ff;
    font-size: 18px;
}

.pricing-card .btn {
    margin-top: auto;
}
