:root {
    --primary-color: #00194b; /* Royal Blue */
    --secondary-color: #c0c0c0; /* Silver */
    --accent-color: #d4af37; /* Gold */
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --font-primary: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Priority Contact Button */
.priority-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background-color: #00a859; /* Electric Green */
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 89, 0.4);
    text-decoration: none;
}

.priority-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.priority-btn:hover {
    background-color: #008c4a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 168, 89, 0.6);
    color: var(--white);
}

.trust-tag {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 8px;
    font-weight: 600;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), #002266);
    color: var(--white);
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-banner h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.cta-banner p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Header & Nav */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.top-bar a {
    color: var(--white);
    margin-left: 15px;
}

.top-bar a:hover {
    color: var(--accent-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    color: var(--accent-color);
}

.logo-icon {
    margin-right: 10px;
    font-size: 2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 0;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    margin-top: 110px;
    height: 80vh;
    background-image: linear-gradient(rgba(0, 25, 75, 0.4), rgba(0, 25, 75, 0.6)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Booking Widget */
.booking-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-width: 1000px;
    margin: -80px auto 40px;
    position: relative;
    z-index: 10;
}

.booking-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    padding: 10px 20px;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.booking-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.form-group input, .form-group select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.booking-form .btn {
    align-self: flex-end;
    flex: 0 0 auto;
    padding: 12px 40px;
}

/* Sections */
.section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
}

/* Destinations */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dest-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: var(--white);
    position: relative;
}

.dest-card:hover {
    transform: translateY(-10px);
}

.dest-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.dest-info {
    padding: 20px;
}

.dest-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Features / Info */
.features-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-box {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* SEO Content Section */
.seo-content {
    background: var(--white);
    padding: 60px 5%;
    margin-top: 40px;
}

.seo-content h2, .seo-content h3 {
    margin-top: 30px;
}

.seo-content p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #444;
}

.seo-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Trust Signals */
.trust-signals {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 5%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.trust-item {
    margin: 15px;
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Flight Tracking */
.tracker-widget {
    background: #111;
    color: #0f0;
    padding: 20px;
    border-radius: 8px;
    font-family: monospace;
    overflow: hidden;
    position: relative;
    height: 300px;
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 70%, rgba(0, 255, 0, 0.4) 100%);
    transform-origin: 0 0;
    animation: radar 4s linear infinite;
    pointer-events: none;
}

@keyframes radar {
    to { transform: rotate(360deg); }
}

.flight-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #0f0;
    border-radius: 50%;
    box-shadow: 0 0 10px #0f0;
}

/* Footer */
footer {
    background-color: #000a1f;
    color: var(--secondary-color);
    padding: 60px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--secondary-color);
}

.footer-col a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 25, 75, 0.95);
    color: white;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-text {
    flex: 1;
    margin-right: 20px;
    font-size: 0.9rem;
}

/* Mobile Sticky Footer */
.mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
    padding: 10px 5%;
    z-index: 1999; /* Below cookie banner */
    justify-content: space-between;
    align-items: center;
}

.mobile-sticky-footer .phone-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.mobile-sticky-footer .priority-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .booking-form {
        flex-direction: column;
    }
    .booking-form .btn {
        width: 100%;
    }
    .mobile-sticky-footer {
        display: flex;
    }
    body {
        padding-bottom: 70px; /* Space for sticky footer */
    }
}
