/* Global Styles */
:root {
    --primary-color: #0066cc;
    --secondary-color: #ff6b6b;
    --accent-color: #ffd43b;
    --text-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Top Bar */
.top-bar {
    font-size: 0.9rem;
}

.top-bar .social-links a:hover {
    opacity: 0.8;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    margin-top: 0;
}

.hero-content {
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.support-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.support-badge i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

/* Flight Search Form */
.flight-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.flight-form h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.flight-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.flight-form .form-control {
    border-radius: 5px;
    padding: 0.75rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    margin-bottom: 0;
}

/* Route Cards */
.route-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.route-card:hover {
    transform: translateY(-5px);
}

.route-card h5 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.route-card .price {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: bold;
}

/* Choose Cards */
.choose-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-5px);
}

.choose-card .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-card .icon-box i {
    font-size: 2rem;
    color: white;
}

.choose-card h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.choose-card p {
    color: #666;
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), #004999);
}

/* Footer */
.footer {
    background-color: #004953;
    color: #ffffff;
}

.footer h3 {
    font-size: 24px;
    font-weight: 600;
}

.footer h5 {
    font-size: 18px;
    font-weight: 600;
}

.text-light-gray {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.booking-help {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.phone-link {
    color: #00ffcc;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-top: 10px;
}

.phone-link:hover {
    color: #00ffcc;
    opacity: 0.9;
}

.contact-item {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffffff;
}

.subscribe-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    padding: 12px;
    border-radius: 4px 0 0 4px;
}

.subscribe-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-form .btn {
    background-color: #00ffcc;
    border: none;
    color: #004953;
    padding: 12px 20px;
    border-radius: 0 4px 4px 0;
}

.subscribe-form .btn:hover {
    background-color: #00e6b8;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

.footer-bottom {
    font-size: 14px;
}

.footer-badges {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.iata-badge {
    height: 50px;
    background: #ffffff;
    padding: 8px;
    border-radius: 4px;
}

.footer-links-bottom {
    margin-top: 30px;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-links-bottom a {
        display: block;
        margin: 10px 0;
    }
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #004999;
    border-color: #004999;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    .flight-form {
        margin-top: 2rem;
    }

    .feature-card, .route-card, .choose-card {
        margin-bottom: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .flight-form, .feature-card, .route-card, .choose-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Airlines Section */
.airline-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.airline-card:hover {
    transform: translateY(-5px);
}

.airline-card img {
    height: 60px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.airline-card h5 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.airline-card p {
    color: #666;
    margin-bottom: 0;
}

/* Region Labels */
.region {
    display: inline-block;
    font-weight: 600;
    color: #00ffcc;
    margin-right: 0.5rem;
}

/* Switch Region Link */
.switch-region {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.switch-region:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

/* Destination Cards */
.destination-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.destination-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.destination-content {
    padding: 20px;
}

.destination-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #333;
}

.destination-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.route-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.flight-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.flight-info span {
    color: #666;
    font-size: 0.9rem;
}

.flight-info i {
    color: #1976d2;
    margin-right: 5px;
}

.destination-card .btn {
    width: 100%;
    padding: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
} 