body {
    font-family: 'Inter', sans-serif;
}

/* Unique Color Theme */
:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --accent-color: #1a535c;
}

.navbar-custom {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.navbar-custom .navbar-brand {
    font-weight: 700;
    color: #fff;
    font-size: 1.6rem;
}

.navbar-custom .nav-link {
    color: #fff;
    font-weight: 500;
    margin-right: 1rem;
    transition: color 0.3s, transform 0.2s;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--accent-color);
    transform: scale(1.05);
}

.call-highlight {
    background: #fff;
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.3s;
}

.call-highlight:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: var(--primary-color);
}

.btn-live {
    background: var(--accent-color);
    color: #fff;
    border-radius: 25px;
    padding: 0.4rem 1rem;
    transition: background 0.3s;
}

.btn-live:hover {
    background: var(--secondary-color);
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.airplane-icon {
    animation: floatAir 6s ease-in-out infinite;
}

@keyframes floatAir {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(15deg);
    }
}

.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    transition: transform 0.4s ease, color 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(15deg) scale(1.2);
}

.deal-carousel::-webkit-scrollbar {
    height: 8px;
}

.deal-carousel::-webkit-scrollbar-thumb {
    background-color: #0d6efd;
    border-radius: 4px;
}

.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.hover-scale:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.deal-card .badge {
    font-size: 0.7rem;
    padding: 0.25em 0.5em;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.event-card .badge {
    font-size: 0.75rem;
    padding: 0.35em 0.7em;
}

.faq-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.terms-card-accent:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.web-footer {
    background: #072142;
}

.hero-section-about {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: white;
    padding: 120px 0 80px 0;
    text-align: center;
}

.hero-section-about h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-section-about p {
    font-size: 1.2rem;
}

.mission-section,
.vision-section,
.values-section {
    padding: 80px 0;
}

.card-modern {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    font-size: 2rem;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.section-title {
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #0f172a;
}

.contact-us-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.contact-us-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}