body {
    font-family: 'Montserrat', sans-serif;
    background: #f4f7fc;
    color: #333;
}

.header-bar {
    background: #ff6f61;
    color: #fff;
    padding: 8px 0;
    text-align: center;
    font-size: 0.9rem;
}

.header-bar a {
    color: #fff;
    text-decoration: underline;
}

.navbar-custom {
    background: linear-gradient(90deg, #00416A, #00A8E8);
}

.navbar-custom .navbar-brand {
    color: #FFD700;
    font-weight: 600;
}

.navbar-custom .nav-link {
    color: #E0F7FA;
}

.navbar-custom .nav-link:hover {
    color: #FFF;
}

.hero {
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: #FFD700;
    border: none;
    color: #00416A;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.btn-primary:hover {
    background: #FFC107;
}

.section-title {
    color: #00416A;
    font-weight: 600;
    margin-bottom: 2rem;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

/*Popular Destination*/
.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: scale(1.02);
}

.destination-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.destination-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.destination-card:hover .destination-name {
    opacity: 1;
}

.destination-card img {
    transition: transform 0.4s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

/*Exclusive Flight Deals*/
.deal-card {
    position: relative;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.deal-card:hover {
    transform: scale(1.02);
}

.deal-card img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

.deal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 15px;
    color: #fff;
    text-align: center;
}

.deal-info h6 {
    font-weight: 600;
    margin-bottom: 0;
}

.discount {
    display: inline-block;
    background: #FFD700;
    color: #1B1464;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
}

/*Popular Flight Routes*/
.route-box {
    background: linear-gradient(135deg, #0E4D92, #00BFA6);
    color: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/*Contact us */
.contact-hero {
    background: linear-gradient(to right, #0e4d92, #00bfa6);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-family: 'Montserrat', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00bfa6;
    outline: none;
    box-shadow: none;
}

.contact-info i {
    font-size: 1.2rem;
    color: #0e4d92;
}

.contact-card {
    background: #f9f9f9;
    border-left: 4px solid #00bfa6;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Privacy Policy*/
.policy-header {
    background: linear-gradient(to right, #0e4d92, #00bfa6);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.policy-section {
    padding: 40px 20px;
    font-family: 'Montserrat', sans-serif;
}

.policy-section h5 {
    color: #0e4d92;
    font-weight: 600;
    margin-top: 30px;
}

.policy-section p {
    color: #333;
    line-height: 1.8;
}

/* Terms and Conditions */
.terms-header {
    background: linear-gradient(to right, #0e4d92, #00bfa6);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.terms-content {
    padding: 60px 20px;
}

.terms-content h4 {
    color: #0e4d92;
    margin-top: 30px;
}

.terms-content p {
    text-align: justify;
}

/* Footer */
.footer {
    background: #002D4A;
    color: #bbb;
    padding: 40px 0;
}

.footer a {
    color: #FFD700;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}