﻿.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Section Badge */
.section-badge .badge {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

/* Text Gradient */
.text-gradient-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Process Cards */
.process-step-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    background: white;
}

    .process-step-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
    }

    .process-step-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #667eea, #764ba2);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .process-step-card:hover::before {
        opacity: 1;
    }

/* Step Number */
.step-number-wrapper {
    position: relative;
}

.step-number-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-warning-gradient {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.bg-success-gradient {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.step-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Step Icon */
.step-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.process-step-card:hover .step-icon-circle {
    transform: scale(1.1);
}

/* Connector Lines */
.process-connector {
    position: absolute;
    top: 140px;
    left: 0;
    right: 0;
    height: 2px;
    pointer-events: none;
}

.connector-line {
    position: absolute;
    top: 50%;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #f093fb, #4facfe);
    transform: translateY(-50%);
}

.connector-dots {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

    .connector-dots .dot {
        position: absolute;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: white;
        border: 3px solid #667eea;
        transform: translate(-50%, -50%);
    }

.dot-1 {
    left: 25%;
}

.dot-2 {
    left: 50%;
    border-color: #f093fb;
}

.dot-3 {
    left: 75%;
    border-color: #4facfe;
}

/* Features List */
.step-features ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

    .step-features ul li:last-child {
        border-bottom: none;
    }

/* Payment Methods */
.payment-method-icon {
    transition: all 0.3s ease;
}

    .payment-method-icon:hover {
        transform: translateY(-5px);
    }

/* Settlement Options */
.settlement-options .badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 20px;
}

/* Time Badge */
.step-time-badge .badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Security Card */
.bg-gradient-dark {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6583 100%);
}

.security-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Soft Background Colors */
.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.1);
}

.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.1);
}

/* Hover Effects */
.hover-lift:hover {
    transform: translateY(-10px);
    transition: transform 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .process-connector {
        display: none;
    }

    .process-step-card {
        margin-bottom: 2rem;
    }

    .step-number-circle {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .step-icon-circle {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .cta-box {
        padding: 2rem !important;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Spacing Utilities */
.mb-6 {
    margin-bottom: 4rem;
}

.mt-6 {
    margin-top: 4rem;
}

.abstract-shape-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.abstract-shape-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.1) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
}

/* Timeline Visualization */
.process-visualization {
    position: relative;
    padding: 40px 0;
}

.timeline-track {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

    .timeline-track::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 50px;
        right: 50px;
        height: 4px;
        background: linear-gradient(90deg, var(--bs-primary) 0%, var(--bs-warning) 33%, var(--bs-success) 66%, var(--bs-info) 100%);
        border-radius: 2px;
        z-index: 1;
    }

.timeline-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
    position: relative;
    animation: fadeInUp 0.8s ease both;
}

    .timeline-step:nth-child(even) {
        flex-direction: row-reverse;
    }

        .timeline-step:nth-child(even) .step-content {
            text-align: right;
        }

.step-marker {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    text-align: center;
    z-index: 2;
}

.marker-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    animation: pulse 2s infinite;
    z-index: -1;
}

.step-content {
    flex: 1;
    padding: 0 40px;
    margin-top: -10px;
}

.step-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

    .step-card::before {
        content: '';
        position: absolute;
        top: 20px;
        width: 20px;
        height: 20px;
        background: white;
        transform: rotate(45deg);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

.timeline-step:nth-child(odd) .step-card::before {
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.timeline-step:nth-child(even) .step-card::before {
    right: -10px;
    border-left: none;
    border-top: none;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.step-tag .badge {
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 20px;
}

/* Security Features */
.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--bs-dark);
}

/* Statistics */
.stat-item {
    padding: 10px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--bs-gray);
}

/* Settlement Options */
.settlement-options .option-card {
    position: relative;
    cursor: pointer;
    text-align: center;
}

.option-card:hover .option-icon {
    transform: scale(1.1);
}

.option-card[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bs-dark);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.option-card:hover[data-tooltip]::after {
    opacity: 1;
}

.option-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.option-label {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Detailed Explanation */
.detailed-explanation {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.detail-item {
    transition: all 0.3s ease;
}

    .detail-item:hover {
        transform: translateX(10px);
    }

.detail-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Highlights */
.highlight-card {
    transition: all 0.3s ease;
}

    .highlight-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

/* Tech Stack */
.tech-stack-wrapper {
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.tech-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

    .tech-logo:hover {
        transform: translateY(-10px);
    }

.tech-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bs-dark);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .timeline-track::before {
        left: 40px;
        right: 40px;
    }

    .step-content {
        padding: 0 20px;
    }

    .tech-logos {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .timeline-track::before {
        display: none;
    }

    .timeline-step,
    .timeline-step:nth-child(even) {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 60px;
    }

    .step-marker {
        margin-bottom: 20px;
    }

    .step-content {
        padding: 0;
        margin-top: 0;
    }

    .step-card::before {
        display: none;
    }

    .step-header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .timeline-step:nth-child(even) .step-content {
        text-align: center;
    }

    .detail-item {
        flex-direction: column;
        text-align: center;
    }

    .detail-icon {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .tech-logos {
        gap: 20px;
    }

    .tech-logo {
        width: 80px;
    }
}

/* Utility Classes */
.bg-primary-gradient {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #667eea 100%);
}

.bg-warning-gradient {
    background: linear-gradient(135deg, var(--bs-warning) 0%, #f093fb 100%);
}

.bg-success-gradient {
    background: linear-gradient(135deg, var(--bs-success) 0%, #4facfe 100%);
}

.bg-info-gradient {
    background: linear-gradient(135deg, var(--bs-info) 0%, #00f2fe 100%);
}

.bg-primary-soft {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.bg-warning-soft {
    background-color: rgba(var(--bs-warning-rgb), 0.1);
}

.bg-success-soft {
    background-color: rgba(var(--bs-success-rgb), 0.1);
}

.mb-6 {
    margin-bottom: 4rem;
}

.mb-7 {
    margin-bottom: 5rem;
}

.mt-7 {
    margin-top: 5rem;
}


.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: -100px;
    animation-delay: 5s;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(253, 126, 20, 0.1) 100%);
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 200px;
    right: 20%;
    animation-delay: 10s;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 100%);
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 200px;
    right: 30%;
    animation-delay: 15s;
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.1) 0%, rgba(13, 110, 253, 0.1) 100%);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, 20px) rotate(90deg);
    }

    50% {
        transform: translate(0, 40px) rotate(180deg);
    }

    75% {
        transform: translate(-20px, 20px) rotate(270deg);
    }
}

/* Category Tabs */
.category-tabs .nav-link {
    padding: 12px 30px;
    margin: 0 10px;
    border-radius: 50px;
    background: white;
    color: var(--bs-dark);
    border: 2px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
    transition: all 0.3s ease;
}

    .category-tabs .nav-link:hover {
        border-color: var(--bs-primary);
        transform: translateY(-2px);
    }

    .category-tabs .nav-link.active {
        background: linear-gradient(135deg, var(--bs-primary) 0%, #667eea 100%);
        color: white;
        border-color: transparent;
        box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    }

/* Feature Cards */
.feature-card-link {
    text-decoration: none;
    display: block;
}

.feature-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.hover-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--bs-primary), #667eea, var(--bs-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* Feature Icons */
.feature-icon-wrapper {
    position: relative;
}

.feature-icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--bs-primary);
    border: 2px solid currentColor;
    animation: pulse 2s infinite;
}

/* Gradient Backgrounds */
.bg-primary-gradient {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #667eea 100%);
}

.bg-success-gradient {
    background: linear-gradient(135deg, var(--bs-success) 0%, #28a745 100%);
}

.bg-warning-gradient {
    background: linear-gradient(135deg, var(--bs-warning) 0%, #fd7e14 100%);
}

.bg-info-gradient {
    background: linear-gradient(135deg, var(--bs-info) 0%, #17a2b8 100%);
}

.bg-danger-gradient {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
}

.bg-purple-gradient {
    background: linear-gradient(135deg, #6f42c1 0%, #d63384 100%);
}

.bg-teal-gradient {
    background: linear-gradient(135deg, #20c997 0%, #0dcaf0 100%);
}

.bg-dark-gradient {
    background: linear-gradient(135deg, #343a40 0%, #212529 100%);
}

/* Feature Stats */
.feature-stats .stat {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--bs-gray);
    margin-top: 5px;
}

/* Payment Methods */
.payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

    .payment-icon:hover {
        background: var(--bs-primary);
        color: white;
        transform: translateY(-3px);
    }

/* Feature Benefits */
.feature-benefits ul li {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Feature Badges */
.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--bs-dark);
}

/* Feature Footer */
.feature-footer {
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #667eea 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Card Hover Effect */
.card-hover-effect {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.feature-card:hover .card-hover-effect {
    opacity: 1;
    transform: translateX(0);
}

/* Mini Features */
.mini-feature {
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

    .mini-feature:hover {
        background: white;
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.mini-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Soft Background Colors */
.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.1);
}

.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.1);
}

.bg-info-soft {
    background-color: rgba(13, 202, 240, 0.1);
}

.bg-danger-soft {
    background-color: rgba(220, 53, 69, 0.1);
}

.bg-purple-soft {
    background-color: rgba(111, 66, 193, 0.1);
}

/* Text Gradient */
.text-gradient-primary {
    background: linear-gradient(45deg, var(--bs-primary), #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Spacing Utilities */
.mb-6 {
    margin-bottom: 4rem;
}

.mb-7 {
    margin-bottom: 5rem;
}

.mt-6 {
    margin-top: 4rem;
}

.mt-7 {
    margin-top: 5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-tabs .nav-link {
        padding: 10px 20px;
        margin: 5px;
        font-size: 0.9rem;
    }

    .feature-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 2rem !important;
    }

    .display-4 {
        font-size: 2.5rem;
    }
}

.animated-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--bs-primary), transparent);
    animation: gridMove 20s linear infinite;
}

.line-1 {
    top: 20%;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 0s;
}

.line-2 {
    top: 40%;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 5s;
}

.line-3 {
    top: 60%;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 10s;
}

.line-4 {
    top: 80%;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 15s;
}

.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

    .floating-dots .dot {
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--bs-primary);
        opacity: 0.1;
        animation: floatDot 15s infinite ease-in-out;
    }

.dot-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    left: 80%;
    animation-delay: 3s;
    background: var(--bs-success);
}

.dot-3 {
    top: 80%;
    left: 20%;
    animation-delay: 6s;
    background: var(--bs-warning);
}

.dot-4 {
    top: 40%;
    left: 90%;
    animation-delay: 9s;
    background: var(--bs-info);
}

@keyframes gridMove {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes floatDot {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.2);
    }
}

/* Video Showcase */
.video-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .video-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
    }

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

    .video-thumbnail img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
}

/* Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    color: white;
    text-align: center;
    z-index: 10;
    transition: all 0.3s ease;
}

    .video-play-btn:hover {
        transform: translate(-50%, -50%) scale(1.1);
    }

.play-button-wrapper {
    position: relative;
    margin: 0 auto 15px;
}

.play-button-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.ripple-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.5;
    animation: ripple 2s infinite;
}

.ripple-2 {
    animation-delay: 1s;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.play-text {
    text-align: center;
}

    .play-text span {
        display: block;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .play-text small {
        font-size: 0.9rem;
        opacity: 0.8;
    }

/* Video Stats */
.video-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 5;
}

.stats-container {
    display: flex;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
    opacity: 0.9;
}

    .stat-item i {
        font-size: 1rem;
    }

/* Video Badges */
.video-badges {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

    .video-badges .badge {
        font-size: 0.75rem;
        padding: 5px 10px;
        border-radius: 20px;
    }

/* Quick Steps */
.quick-steps .step-card {
    background: white;
    transition: all 0.3s ease;
}

    .quick-steps .step-card:hover {
        background: var(--bs-primary);
        color: white;
        transform: translateY(-5px);
    }

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Process Steps */
.process-step {
    position: relative;
}

.step-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.step-connector {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(to bottom, var(--bs-primary), var(--bs-warning));
    z-index: 1;
}

.process-step:last-child .step-connector {
    display: none;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(var(--bs-success-rgb), 0.1);
    color: var(--bs-success);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Key Benefits */
.benefit-card {
    background: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-color: var(--bs-primary);
    }

.benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Trust Indicators */
.trust-indicators {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.trust-item {
    transition: transform 0.3s ease;
}

    .trust-item:hover {
        transform: translateY(-10px);
    }

.trust-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Modal */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #667eea 100%);
    color: white;
}

/* Text Gradient */
.text-gradient-primary {
    background: linear-gradient(45deg, var(--bs-primary), #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #667eea 100%);
}

.bg-warning-gradient {
    background: linear-gradient(135deg, var(--bs-warning) 0%, #fd7e14 100%);
}

.bg-success-gradient {
    background: linear-gradient(135deg, var(--bs-success) 0%, #28a745 100%);
}

/* Soft Background Colors */
.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.1);
}

.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.1);
}

.bg-info-soft {
    background-color: rgba(13, 202, 240, 0.1);
}

/* Spacing Utilities */
.mb-6 {
    margin-bottom: 4rem;
}

.mt-6 {
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        padding-left: 0 !important;
    }

    .video-thumbnail img {
        height: 250px;
    }

    .play-button-circle {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .trust-indicators {
        padding: 20px;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Card Shadow Enhancement */
.shadow-xl {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    overflow: hidden;
}

    .hero-carousel .owl-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        padding: 0 30px;
        z-index: 10;
    }

        .hero-carousel .owl-nav button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2) !important;
            backdrop-filter: blur(10px);
            color: white !important;
            font-size: 20px !important;
            border: 1px solid rgba(255, 255, 255, 0.3) !important;
            transition: all 0.3s ease;
            display: flex !important;
            align-items: center;
            justify-content: center;
        }

            .hero-carousel .owl-nav button:hover {
                background: rgba(255, 255, 255, 0.3) !important;
                transform: scale(1.1);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            }

            .hero-carousel .owl-nav button span {
                display: none;
            }

    .hero-carousel .owl-dots {
        position: absolute;
        bottom: 30px;
        width: 100%;
        text-align: center;
        z-index: 10;
    }

    .hero-carousel .owl-dot {
        display: inline-block;
        margin: 0 5px;
    }

        .hero-carousel .owl-dot span {
            width: 12px;
            height: 12px;
            margin: 5px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            display: block;
            transition: all 0.3s ease;
            position: relative;
        }

            .hero-carousel .owl-dot span::after {
                content: '';
                position: absolute;
                top: -4px;
                left: -4px;
                right: -4px;
                bottom: -4px;
                border: 2px solid rgba(255, 255, 255, 0.3);
                border-radius: 50%;
                opacity: 0;
                transition: opacity 0.3s ease;
            }

        .hero-carousel .owl-dot.active span {
            background: white;
            transform: scale(1.2);
        }

            .hero-carousel .owl-dot.active span::after {
                opacity: 1;
            }

        .hero-carousel .owl-dot:hover span {
            background: white;
            transform: scale(1.1);
        }

/* Hero Section Base Styles */
.hero-wrap {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    opacity: 0.8;
}

.gradient-1 {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.8) 0%, rgba(13, 110, 253, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* Text Styles */
.display-3 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.text-white-60 {
    color: rgba(255, 255, 255, 0.6) !important;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Button Styles */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4) !important;
    }

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
}

    .btn-outline-light:hover {
        background: white;
        color: #667eea !important;
        border-color: white;
    }

.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
}

    .btn-success:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(40, 167, 69, 0.4) !important;
    }

/* Badge Styles */
.hero-badge .badge {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

/* Payment Icons */
.payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

    .payment-icon:hover {
        background: white;
        color: #667eea;
        transform: translateY(-5px);
    }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.scroll-down {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

    .scroll-down:hover {
        background: white;
        color: #667eea;
        transform: translateY(5px);
    }

/* Offer Timer */
.offer-timer-wrapper {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

.offer-timer {
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

/* Trust Badge */
.trust-badge {
    margin-bottom: 2rem;
}

    .trust-badge .trust-icon {
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* Stats Card */
.stats-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.stat-value {
    font-weight: 800;
}

.stars {
    font-size: 1.25rem;
}

/* Business Features */
.business-feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

    .business-feature:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-10px);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .business-feature .feature-icon {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-card {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

    .floating-card .card-content {
        text-align: center;
    }

    .floating-card i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .floating-card span {
        font-size: 0.9rem;
    }

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

/* Particles Container */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Animated Shapes */
.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

    .animated-shapes .shape {
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    }

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: rotate 20s linear infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: -100px;
    animation: rotate 15s linear infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 200px;
    right: 20%;
    animation: rotate 25s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Features List */
.features-list .feature-item {
    padding: 10px 0;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Trust Indicators */
.trust-indicators .trust-item {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-close-white {
    filter: brightness(0) invert(1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.125rem;
    }

    .hero-carousel .owl-nav {
        display: none;
    }

    .hero-carousel .owl-dots {
        bottom: 20px;
    }

    .offer-timer-wrapper {
        top: 20px;
        right: 20px;
        left: 20px;
        text-align: center;
    }

    .offer-timer {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .stats-card {
        padding: 2rem !important;
    }

    .stat-value.display-6 {
        font-size: 2.5rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .floating-card {
        width: 70px;
        height: 70px;
    }

        .floating-card i {
            font-size: 1.5rem;
        }

        .floating-card span {
            font-size: 0.7rem;
        }

    .business-feature {
        padding: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 2rem;
    }

    .hero-content {
        padding-top: 6rem !important;
        padding-bottom: 4rem !important;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

        .cta-buttons .btn {
            width: 100%;
            max-width: 300px;
            margin-bottom: 1rem;
        }

    .trust-indicators .row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .payment-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

/* Loading States */
.hero-carousel.loading {
    min-height: 600px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Print Styles */
@media print {
    .hero-carousel .owl-nav,
    .scroll-indicator,
    .offer-timer-wrapper,
    .video-btn {
        display: none !important;
    }
}

.animated-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: wave 10s infinite linear;
}

.wave-1 {
    animation-delay: 0s;
    opacity: 0.5;
}

.wave-2 {
    animation-delay: 2s;
    opacity: 0.3;
    height: 80px;
}

.wave-3 {
    animation-delay: 4s;
    opacity: 0.2;
    height: 60px;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

    .floating-shapes .shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
        animation: floatShape 20s infinite ease-in-out;
    }

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 40%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Navigation */
.secondary-nav-tabs {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 4px;
    border-radius: 12px;
}

    .secondary-nav-tabs .nav-link {
        padding: 12px 24px;
        color: rgba(255, 255, 255, 0.8);
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

        .secondary-nav-tabs .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: white;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }

        .secondary-nav-tabs .nav-link:hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
        }

        .secondary-nav-tabs .nav-link.active {
            color: white;
            background: rgba(255, 255, 255, 0.2);
        }

            .secondary-nav-tabs .nav-link.active::before {
                transform: translateY(0);
            }

.nav-icon {
    font-size: 1.2rem;
}

/* Page Header */
.page-header {
    animation: fadeInUp 0.8s ease;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--bs-dark);
    font-weight: 500;
}

/* Process Steps */
.process-step {
    position: relative;
    padding: 0 20px;
}

    .process-step::after {
        content: '';
        position: absolute;
        top: 25px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: var(--bs-gray-300);
        z-index: 1;
    }

    .process-step:last-child::after {
        display: none;
    }

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bs-gray-200);
    color: var(--bs-gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step.active .step-number {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #667eea 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Form Styles */
.form-section {
    animation: slideIn 0.6s ease;
    animation-fill-mode: both;
}

    .form-section:nth-child(1) {
        animation-delay: 0.1s;
    }

    .form-section:nth-child(2) {
        animation-delay: 0.2s;
    }

    .form-section:nth-child(3) {
        animation-delay: 0.3s;
    }

.section-header {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

    .section-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--bs-primary), #667eea);
        border-radius: 2px;
    }

.section-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Form Floating Labels */
.form-floating {
    position: relative;
}

    .form-floating label {
        padding-left: 2.5rem;
        color: var(--bs-gray-600);
        transition: all 0.3s ease;
    }

    .form-floating .form-control:focus ~ label,
    .form-floating .form-control:not(:placeholder-shown) ~ label {
        color: var(--bs-primary);
        transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
        padding-left: 2.5rem;
    }

.form-control, .form-select {
    border: 2px solid var(--bs-gray-300);
    border-radius: 10px;
    padding: 1rem 1rem 1rem 3rem;
    transition: all 0.3s ease;
    height: calc(3.5rem + 2px);
}

    .form-control:focus, .form-select:focus {
        border-color: var(--bs-primary);
        box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
    }

    .form-control.is-invalid, .form-select.is-invalid {
        border-color: var(--bs-danger);
    }

.amount-input {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bs-dark);
}

.currency-select {
    background-color: var(--bs-light);
    border-left: none !important;
}

/* Amount Breakdown */
.amount-breakdown {
    border-radius: 10px;
    animation: fadeIn 0.5s ease;
}

/* Tip Cards */
.tip-card {
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .tip-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    }

.tip-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #667eea 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

    .btn-primary::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn-primary:hover::after {
        left: 100%;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3) !important;
    }

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Utility Classes */
.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.1);
}

.bg-info-soft {
    background-color: rgba(13, 202, 240, 0.1);
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.1);
}

.text-gradient-primary {
    background: linear-gradient(45deg, var(--bs-primary), #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #667eea 100%);
}

.z-n1 {
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .secondary-nav-tabs {
        flex-direction: column;
        width: 100%;
        margin: 1rem 0;
    }

    .display-5 {
        font-size: 2rem;
    }

    .process-step::after {
        display: none;
    }

    .process-step {
        margin-bottom: 2rem;
    }

    .card-body {
        padding: 2rem !important;
    }

    .form-floating label {
        padding-left: 2rem;
    }

    .form-control, .form-select {
        padding-left: 2.5rem;
    }
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

    .loading::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        animation: loading 1.5s infinite;
    }

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.money-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.coin, .bill {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: floatMoney 20s infinite linear;
}

.coin-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.coin-2 {
    top: 40%;
    right: 10%;
    animation-delay: 5s;
}

.coin-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
}

.bill-1 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.bill-2 {
    bottom: 30%;
    right: 5%;
    animation-delay: 8s;
}

.bill-3 {
    top: 60%;
    left: 5%;
    animation-delay: 15s;
}

@keyframes floatMoney {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }

    50% {
        opacity: 0.2;
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.1;
    }
}

/* Transfer Process */
.transfer-process {
    position: relative;
}

    .transfer-process::before {
        content: '';
        position: absolute;
        top: 25px;
        left: 50px;
        right: 50px;
        height: 3px;
        background: var(--bs-gray-300);
        z-index: 1;
    }

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bs-gray-200);
    color: var(--bs-gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 auto 15px;
    position: relative;
    transition: all 0.3s ease;
}

.step-check {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #667eea 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.process-step.active .step-number {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #667eea 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.process-step.completed .step-number span {
    opacity: 0;
}

.process-step.completed .step-check {
    opacity: 1;
    transform: scale(1);
}

.step-content h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

/* Quick Contacts */
.quick-contacts .contact-btn {
    border-radius: 20px;
    padding: 6px 15px;
    transition: all 0.3s ease;
}

    .quick-contacts .contact-btn:hover {
        background: var(--bs-primary);
        color: white;
        transform: translateY(-2px);
    }

/* Amount Cards */
.amount-card .card {
    border-radius: 15px;
    transition: all 0.3s ease;
}

    .amount-card .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    }

.amount-input-group .input-group {
    border-radius: 10px;
    overflow: hidden;
}

.amount-input {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bs-dark);
    height: 60px;
    border: 2px solid var(--bs-gray-300) !important;
    border-left: none !important;
}

.currency-select {
    border: 2px solid var(--bs-gray-300) !important;
    border-left: none !important;
    height: 60px;
    background-color: white;
    min-width: 120px;
}

.currency-symbol {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bs-primary);
    min-width: 30px;
}

/* Exchange Rate */
.exchange-arrow {
    font-size: 2rem;
    margin: 20px 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Fee Breakdown */
.fee-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.total-item {
    padding: 20px 0;
}

.savings-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

    .savings-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    }

/* Payment Options */
.payment-option .payment-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border: 2px solid var(--bs-gray-300);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .payment-option .payment-card:hover {
        border-color: var(--bs-primary);
        transform: translateY(-3px);
    }

.payment-option input:checked + .payment-card {
    border-color: var(--bs-primary);
    background: rgba(102, 126, 234, 0.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: var(--bs-primary-soft);
    color: var(--bs-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Help Cards */
.help-card {
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .help-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    }

.help-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Form Sections */
.form-section {
    animation: slideIn 0.6s ease;
    animation-fill-mode: both;
}

    .form-section:nth-child(1) {
        animation-delay: 0.1s;
    }

    .form-section:nth-child(2) {
        animation-delay: 0.2s;
    }

    .form-section:nth-child(3) {
        animation-delay: 0.3s;
    }

    .form-section:nth-child(4) {
        animation-delay: 0.4s;
    }

.section-header {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

    .section-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--bs-primary), #667eea);
        border-radius: 2px;
    }

.section-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Quick Stats */
.quick-stats .stat-item {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--bs-dark);
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Security Badges */
.trust-badges .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 20px;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Utility Classes */
.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.1);
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.1);
}

.bg-info-soft {
    background-color: rgba(13, 202, 240, 0.1);
}

.text-gradient-primary {
    background: linear-gradient(45deg, var(--bs-primary), #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #667eea 100%);
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.z-n1 {
    z-index: -1;
}

.mb-6 {
    margin-bottom: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .transfer-process::before {
        display: none;
    }

    .process-step {
        margin-bottom: 2rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .amount-input, .currency-select {
        height: 50px;
    }

    .amount-input {
        font-size: 1.25rem;
    }

    .payment-option .payment-card {
        flex-direction: column;
        text-align: center;
    }

    .payment-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .quick-stats {
        flex-direction: column;
        gap: 10px;
    }

    .form-actions .d-flex {
        flex-direction: column;
        width: 100%;
    }

    .form-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

.payment-processing-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.processing-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bs-primary);
    opacity: 0.3;
    animation: floatDot 15s infinite ease-in-out;
}

.dot-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    right: 30%;
    animation-delay: 3s;
    background: var(--bs-success);
}

.dot-3 {
    bottom: 40%;
    left: 40%;
    animation-delay: 6s;
    background: var(--bs-warning);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes floatDot {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.6;
    }
}

/* Processing Cards */
.processing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

    .processing-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

.instant-card:hover {
    box-shadow: 0 25px 50px rgba(255, 193, 7, 0.2);
}

.standard-card:hover {
    box-shadow: 0 25px 50px rgba(13, 110, 253, 0.2);
}

.nextday-card:hover {
    box-shadow: 0 25px 50px rgba(25, 135, 84, 0.2);
}

/* Card Header */
.processing-card .card-header {
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.instant-card .card-header {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.standard-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.nextday-card .card-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.speed-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-display {
    text-align: center;
    color: white;
    margin: 20px 0;
}

.time-value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.time-unit {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.processing-icon {
    text-align: center;
    margin-top: 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Card Body */
.processing-card .card-body {
    padding: 30px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.card-subtitle {
    color: var(--bs-gray-600);
    margin-bottom: 25px;
}

/* Features */
.features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--bs-gray-700);
}

    .feature-item i {
        font-size: 1.1rem;
    }

/* Rate Section */
.rate-section {
    margin: 25px 0;
    padding: 20px;
    background: var(--bs-light);
    border-radius: 15px;
}

.rate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .rate-header h5 {
        margin: 0;
        font-weight: 600;
        color: var(--bs-dark);
    }

.rate-grid {
    display: grid;
    gap: 15px;
}

.rate-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .rate-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-color: var(--bs-primary);
    }

.rate-type {
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-icons {
    display: flex;
    gap: 8px;
    font-size: 1.5rem;
}

.card-icon {
    font-size: 1.5rem;
}

.fab.fa-cc-visa {
    color: #1a1f71;
}

.fab.fa-cc-mastercard {
    color: #eb001b;
}

.fab.fa-cc-amex {
    color: #2e77bc;
}

.fas.fa-credit-card {
    color: var(--bs-primary);
}

.type-name {
    font-weight: 600;
    color: var(--bs-dark);
}

.rate-value {
    text-align: right;
}

    .rate-value .value {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--bs-dark);
    }

    .rate-value .note {
        font-size: 0.8rem;
        color: var(--bs-gray-600);
    }

/* Additional Info */
.processing-info, .next-day-info {
    margin-top: 20px;
    padding: 15px;
    background: var(--bs-light);
    border-radius: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--bs-gray-700);
    font-size: 0.9rem;
}

.next-day-info .info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--bs-dark);
}

.schedule-grid {
    display: grid;
    gap: 10px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

    .schedule-item:last-child {
        border-bottom: none;
    }

    .schedule-item .day {
        font-weight: 500;
        color: var(--bs-dark);
    }

    .schedule-item .time {
        color: var(--bs-gray-600);
    }

/* Card Footer */
.processing-card .card-footer {
    padding: 25px 30px;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.savings-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bs-light);
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--bs-dark);
}

.processing-card .btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 15px;
    border: none;
    transition: all 0.3s ease;
}

.instant-card .btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--bs-dark);
}

    .instant-card .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
    }

.standard-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

.nextday-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(25, 135, 84, 0.3);
}

/* Animations */
.processing-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    overflow: hidden;
}

.animation-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: processingLine 2s infinite;
}

@keyframes processingLine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.pulse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Timer Elements */
.countdown-timer, .next-day-counter {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 200px;
}

.timer-label, .counter-label {
    font-size: 0.8rem;
    color: var(--bs-gray-600);
    margin-bottom: 5px;
}

.timer {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-primary);
}

.counter-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bs-success);
}

/* Comparison Table */
.comparison-table {
    margin: 0;
}

    .comparison-table th {
        font-weight: 600;
        padding: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
    }

    .comparison-table td {
        padding: 20px;
        vertical-align: middle;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .comparison-table tbody tr:hover {
        background: rgba(0, 0, 0, 0.02);
    }

/* Help Cards */
.help-section {
    margin-top: 50px;
}

.help-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

    .help-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .help-card .help-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin: 0 auto 20px;
    }

    .help-card h5 {
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--bs-dark);
    }

/* Text Gradient */
.text-gradient-primary {
    background: linear-gradient(45deg, var(--bs-primary), #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Utility Classes */
.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.1);
}

.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .time-value {
        font-size: 2.5rem;
    }

    .processing-card {
        margin-bottom: 30px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
        font-size: 0.85rem;
    }

    .countdown-timer,
    .next-day-counter {
        position: relative;
        bottom: 0;
        margin-top: 20px;
    }
}