:root {
    --primary-blue: #1b365d;
    --primary-orange: #e37222;
    --text-light: #f8f9fa;
    --text-dark: #212529;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: url('bg.png') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 54, 93, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    animation: fadeInDown 1s ease-out;
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo-icon {
    color: var(--primary-orange);
}

.logo-text-blue {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.logo-text-orange {
    color: var(--primary-orange);
}

.iata-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-section {
    flex: 1;
    min-width: 300px;
    animation: fadeInLeft 1s ease-out;
}

.badge {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(227, 114, 34, 0.4);
}

.headline {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.subheadline {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    max-width: 600px;
}

.services {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: default;
}

.service-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.service-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

/* Contact Card */
.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    width: 400px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: fadeInRight 1s ease-out;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.contact-agent {
    margin-bottom: 1.5rem;
}

.agent-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-orange);
    display: block;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-list i {
    color: var(--primary-orange);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.contact-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: var(--primary-orange);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .headline { font-size: 3rem; }
    .main-content { flex-direction: column; text-align: center; }
    .services { justify-content: center; }
    .subheadline { margin: 0 auto 2.5rem; }
    .contact-card { width: 100%; max-width: 500px; margin: 0 auto; text-align: left; }
}

@media (max-width: 768px) {
    .header { flex-direction: column; gap: 1rem; }
    .headline { font-size: 2.5rem; }
}
