/* Application Functionality Section Styles */

.application {
    position: relative;
    overflow: hidden;
}

/* Trust Banner / Testimonial Section */
.trust-banner {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.trust-banner-inline {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
}

.trust-banner-inner {
    max-width: 700px;
    margin: 0 auto;
}

.trust-content {
    padding: 1rem 0;
}

.trust-stat,
.trust-award {
    flex: 1;
    max-width: 280px;
}

.trust-icon {
    color: #FF5231;
    opacity: 0.9;
}

.trust-icon svg {
    transition: transform 0.3s ease;
}

.trust-stat:hover .trust-icon svg,
.trust-award:hover .trust-icon svg {
    transform: scale(1.1);
}

.trust-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.trust-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

/* Responsive adjustments for trust banner */
@media (max-width: 767px) {
    .trust-banner {
        padding: 1.5rem 0;
    }
    
    .trust-content {
        gap: 2rem !important;
    }
    
    .trust-stat,
    .trust-award {
        padding: 0.5rem 0;
    }
    
    .trust-number {
        font-size: 1.125rem;
    }
    
    .trust-label {
        font-size: 0.8125rem;
    }
}

@media (min-width: 992px) {
    .trust-number {
        font-size: 1.5rem;
    }
    
    .trust-label {
        font-size: 0.9375rem;
    }
}

.application::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.02) 0%, rgba(124, 58, 237, 0.02) 100%);
    pointer-events: none;
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.icon-circle {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 2rem;
    }

    .process-step {
        margin-bottom: 1.5rem;
    }

    .benefit-card {
        margin-bottom: 1rem;
    }
}

/* Animation for elements coming into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.process-step,
.benefit-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Gradient text effect for headings */
.text-gradient {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Similar Airports Section */
.similar-airports-section {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.similar-airport-card .card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.similar-airport-card .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.similar-airport-card a {
    color: inherit;
}

/* Animation for similar airports */
.similar-airport-card {
    animation: fadeInUp 0.6s ease forwards;
}

.similar-airport-card:nth-child(2) {
    animation-delay: 0.1s;
}

.similar-airport-card:nth-child(3) {
    animation-delay: 0.2s;
}

.similar-airport-card:nth-child(4) {
    animation-delay: 0.3s;
}

.similar-airport-card:nth-child(5) {
    animation-delay: 0.4s;
}

/* Custom scrollbar for better aesthetics */
.application::-webkit-scrollbar {
    width: 8px;
}

.application::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.application::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.application::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}