/* Custom Variables */
:root {
    --primary-blue: #2563eb;
    --secondary-purple: #7c3aed;
    --success-green: #059669;
    --warning-orange: #ea580c;
    --danger-red: #dc2626;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
}

/* Global Styles */
body {
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--slate-100) 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

/* Header Styles */
.custom-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    padding: 1rem 0;
}

.text-sm {
    font-size: 0.875rem;
}

/* Brand Card */
.brand-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1d4ed8 100%);
    color: white;
    overflow: hidden;
}

.brand-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.brand-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(219, 234, 254, 1);
}

.brand-description {
    font-size: 0.875rem;
    color: rgba(191, 219, 254, 1);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Custom Cards */
.custom-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: none !important;
}

/* Icon Circles */
.icon-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Purple Badge */
.bg-purple {
    background-color: var(--secondary-purple) !important;
}

/* Journey Timeline */
.journey-timeline {
    padding: 1rem 0;
}

.timeline-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.timeline-line {
    height: 1px;
    min-width: 80px;
}

.gradient-line-1 {
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--warning-orange) 100%);
}

.gradient-line-2 {
    background: linear-gradient(90deg, var(--warning-orange) 0%, var(--success-green) 100%);
}

/* Flight Legs */
.leg-number {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-purple) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Flight Path */
.flight-path-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.flight-path-line {
    height: 1px;
    min-width: 120px;
}

.gradient-flight-line {
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--warning-orange) 100%);
}

.gradient-flight-line-2 {
    background: linear-gradient(90deg, var(--warning-orange) 0%, var(--success-green) 100%);
}

.gradient-flight-line-3 {
    background: linear-gradient(90deg, var(--success-green) 0%, var(--primary-blue) 100%);
}

.flight-icon {
    background: var(--slate-100);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-600);
    transform: rotate(90deg);
    flex-shrink: 0;
}

/* Aircraft Images */
.aircraft-images .main-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.aircraft-images .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
}

.secondary-image {
    aspect-ratio: 2/1;
    overflow: hidden;
}

.secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Specifications */
.spec-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Benefits */
.benefits-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    border-radius: 0.5rem;
}

.benefit-dot {
    width: 0.375rem;
    height: 0.375rem;
    background-color: var(--primary-blue);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Gradient Button */
.gradient-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-purple) 100%);
    border: none;
    transition: all 0.3s ease;
}

.gradient-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Stars */
.stars i {
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .brand-title {
        font-size: 2rem;
    }

    .brand-subtitle {
        font-size: 1rem;
    }

    .display-6 {
        font-size: 2rem;
    }

    .timeline-line {
        min-width: 60px;
    }

    .flight-path-line {
        min-width: 80px;
    }
}

@media (max-width: 576px) {
    .brand-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }

    .brand-title {
        font-size: 1.75rem;
    }

    .display-6 {
        font-size: 1.5rem;
    }

    .timeline-line,
    .flight-path-line {
        min-width: 40px;
    }
}

/* Utility Classes */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}

.border-opacity-25 {
    --bs-border-opacity: 0.25;
}

/* Animation */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    /*transform: translateY(-2px);*/
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}


.autocomplete-suggestions {
    background-color: rgb(255, 255, 255) !important;
    padding: 2px 5px;
}

.autocomplete-suggestion {
    border-bottom: 1px solid #ccc !important;
    padding: 5px;
}

.autocomplete-suggestion:hover {
    background-color: #00A0E0;
    color: #fff !important;
    cursor: pointer;
}

.autocomplete-suggestions {
    max-height: 200px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.aircraft-image {
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
}

.aircraft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.2) brightness(1.1);
}


@-webkit-keyframes loader {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes loader {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.loader {
    position: relative;
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    color: #206bc4;
    vertical-align: middle
}

.loader:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    border: 1px solid;
    border-color: transparent;
    border-top-color: currentColor;
    border-left-color: currentColor;
    border-radius: 100rem;
    -webkit-animation: loader .6s linear;
    animation: loader .6s linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.dimmer {
    position: relative
}

.dimmer .loader {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    display: none;
    margin: 0 auto;
    transform: translateY(-50%)
}

.dimmer.active .loader {
    display: block
}

.dimmer.active .dimmer-content {
    pointer-events: none;
    opacity: .1
}

@-webkit-keyframes animated-dots {
    0% {
        transform: translateX(-100%)
    }
}

@keyframes animated-dots {
    0% {
        transform: translateX(-100%)
    }
}

.animated-dots {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom
}

.animated-dots:after {
    display: inline-block;
    content: "...";
    -webkit-animation: animated-dots 1.2s steps(4, jump-none) infinite;
    animation: animated-dots 1.2s steps(4, jump-none) infinite
}


.review {
    background: #F9FAFB !important;
    color: #667085 !important;
}

.reviewTable.title {
    color: #667085 !important;
}

.review.title {
    font-weight: 500;
    cursor: pointer;
}

.text-primary {
    color: #35B7C1 !important;
}

.btn-primary {
    background: linear-gradient(135deg, #35B7C1 0%, #1E4B71 100%);
}


.btn-outline-dark {
    border: 1px solid #1E4B71 !important;
}

.btn-outline-dark.active {
    background: #1E4B71 !important;
}

.btn-outline-dark:hover {
    background: #1E4B71 !important;
}

.alert-primary {
    background: #35B7C1 !important;
}
