:root {
    --color-navy: #0B192C;
    --color-navy-stats: #051329;
    --color-red: #B30016;
    --color-white: #ffffff;
    --color-gray: #f4f5f7;
    --color-dark-gray: #333;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body, html {
    font-family: var(--font-body);
    color: var(--color-dark-gray);
    overflow-x: hidden;
    max-width: 100%;
    background-color: #fff;
    scroll-behavior: smooth;
}

.text-red { color: var(--color-red); }
.text-white { color: var(--color-white); }

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* Header */
.header {
    background-color: var(--color-white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo p {
    font-size: 0.6rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 2px;
    margin-top: 2px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--color-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--color-red);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-red);
}

.main-nav .dropdown i {
    font-size: 0.6rem;
    margin-left: 5px;
    vertical-align: middle;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
    border: 1px solid var(--color-red);
}

.btn-primary:hover {
    background-color: #990013;
}

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

.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
}

.icon-circle-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    color: var(--color-red);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 10px;
    font-size: 0.7rem;
}

.icon-circle-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 10px;
    font-size: 0.7rem;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 75px);
    min-height: 850px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1540962351504-03099e0a754b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    transform: scaleX(-1);
    z-index: 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(5,19,41,0.95) 0%, rgba(5,19,41,0.8) 35%, rgba(5,19,41,0.2) 60%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

@keyframes slowZoom {
    0% { transform: scaleX(-1) scale(1); }
    100% { transform: scaleX(-1) scale(1.1); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1;
    animation: fadeUp 1.2s ease-out forwards;
}

/* Left Hero Content */
.hero-left {
    max-width: 650px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.divider-airplane {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
}

.divider-airplane .line {
    flex: 1;
    height: 2px;
    background-color: var(--color-white);
    opacity: 0.8;
}

.divider-airplane i {
    color: var(--color-white);
    margin-left: 8px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.hero-desc {
    color: var(--color-white);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 300;
}

/* 4 Icons inline */
.hero-features-icons {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
}

.f-item {
    text-align: center;
    color: var(--color-white);
}

.f-item i {
    font-size: 1.6rem;
    margin-bottom: 10px;
    transition: transform 0.4s ease;
}
.f-item:hover i {
    transform: scale(1.1) translateY(-3px);
}

.f-item h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.f-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255,255,255,0.2);
}

/* Hero CTA */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
}

/* Right side features */
.hero-right {
    margin-top: 40px;
}

.right-features-list {
    border-left: 1px solid rgba(179,0,22,0.6);
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.r-feat {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--color-white);
}

.r-feat i {
    font-size: 1.8rem;
    color: var(--color-white);
}

.r-feat-text h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.r-feat-text p {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 300;
    line-height: 1.4;
}

/* Floating phones */
.floating-phones {
    position: absolute;
    right: 15px;
    bottom: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-btn {
    background-color: var(--color-navy);
    color: var(--color-white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: background-color 0.3s;
}

.phone-btn:hover {
    background-color: var(--color-red);
}

/* Stats Wrapper */
.stats-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-navy-stats);
    z-index: 15;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.stat-col {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-white);
}

.stat-col i {
    font-size: 1.8rem;
}

.stat-col h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-col p {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.8;
    text-transform: uppercase;
}

.stat-divider-line {
    width: 1px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
}

/* Booking Card */
.booking-card-container {
    position: relative;
    z-index: 20;
}

.booking-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.booking-card:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    transform: translateY(-5px);
}

.bc-top-row {
    display: flex;
}

.bc-left {
    width: 30%;
    padding: 30px;
    border-right: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.bc-left h2 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.bc-left p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.dotted-map {
    position: absolute;
    bottom: -10px;
    right: -10px;
}

.map-plane {
    position: absolute;
    top: 40%;
    right: 20%;
    color: var(--color-navy);
    font-size: 1.2rem;
    transform: rotate(45deg);
}

.bc-right {
    width: 70%;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.input-box {
    position: relative;
    flex: 1;
}

.input-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.9rem;
    z-index: 2;
}

.input-box i.arrow-down {
    left: auto;
    right: 15px;
}

.input-box input, .input-box select {
    width: 100%;
    height: 46px;
    padding: 0 15px 0 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-dark-gray);
    outline: none;
    appearance: none;
    background-color: var(--color-white);
}

.input-box select {
    cursor: pointer;
}

.input-box input:focus, .input-box select:focus {
    border-color: var(--color-navy);
}

.submit-btn {
    height: 46px;
    flex: 1;
    font-size: 0.85rem;
    border-radius: 6px;
}

.bc-bottom {
    display: flex;
    border-top: 1px solid #eee;
}

.bottom-feat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    border-right: 1px solid #eee;
}

.bottom-feat:last-child {
    border-right: none;
}

.bf-icon {
    width: 32px;
    height: 32px;
    background-color: var(--color-navy);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.bf-text h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-navy);
    margin-bottom: 2px;
}

.bf-text p {
    font-size: 0.75rem;
    color: #666;
}

.form-message {
    display: none;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    text-align: center;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
}

/* Group Charter Banner Section */
.group-charter-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1542296332-2e4473faf563?q=80&w=2000&auto=format&fit=crop') no-repeat center center/cover;
    padding: 80px 0 0 0;
}

.group-charter-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(248,249,250,1) 0%, rgba(248,249,250,0.95) 40%, rgba(248,249,250,0) 80%);
    z-index: 1;
}

.gcb-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.gcb-left {
    max-width: 600px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.gcb-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-navy);
    line-height: 1.1;
    margin-bottom: 20px;
}

.gcb-desc {
    font-size: 1.1rem;
    color: var(--color-dark-gray);
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 500;
}

.gcb-features {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.gcb-features .f-divider {
    background-color: rgba(11, 25, 44, 0.2);
}

.gcb-f-item {
    text-align: center;
}

.gcb-f-item i {
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 10px;
}

.gcb-f-item h4 {
    font-size: 0.75rem;
    color: var(--color-navy);
    line-height: 1.2;
}

.gcb-btn {
    padding: 12px 25px;
    font-size: 1rem;
}

.gcb-right {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.ideal-for-card {
    background-color: rgba(11, 25, 44, 0.75); /* --color-navy with 75% opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    padding: 25px 30px;
    border-radius: 20px 0 0 0;
    width: 270px;
    box-shadow: -5px -5px 25px rgba(0,0,0,0.2);
}

.ifc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ifc-header i {
    font-size: 1.5rem;
}

.ifc-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.ifc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ifc-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.ifc-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-white);
}

/* Seamless Travel Section */
.seamless-travel {
    padding: 80px 0 60px;
    background-color: var(--color-white);
}

.st-header {
    text-align: center;
    margin-bottom: 50px;
}

.st-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-navy);
    margin-bottom: 15px;
}

.st-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.st-features {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.st-col {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.st-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-navy);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.4s ease;
}

.st-col:hover .st-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--color-red);
}

.st-col-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.st-col-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.st-divider {
    width: 1px;
    height: 120px;
    background-color: #eee;
    margin-top: 20px;
}

/* Airbus Section */
.airbus-section {
    padding: 60px 0 0;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.airbus-container {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.airbus-left {
    flex: 1;
    padding: 40px 0 80px;
}

.airbus-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--color-navy);
    margin-bottom: 5px;
}

.airbus-subtitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-navy);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.airbus-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

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

.airbus-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--color-navy);
}

.airbus-list li i {
    font-size: 1.2rem;
}

.airbus-right {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.airbus-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Why Choose Section */
.why-choose {
    background-color: var(--color-navy);
    padding: 40px 0;
    color: var(--color-white);
}

.wc-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

.wc-line-left, .wc-line-right {
    height: 1px;
    width: 60px;
    background-color: var(--color-red);
}

.wc-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 1px;
}

.wc-features {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.wc-col {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.wc-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-white);
    color: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.wc-col-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.wc-col-desc {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.6;
}

.wc-divider {
    width: 1px;
    height: 80px;
    background-color: rgba(255,255,255,0.2);
    margin-top: 10px;
}

/* Bottom Images */
/* Photo Gallery Section */
.photo-gallery {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer Section */
.main-footer {
    background-color: var(--color-navy);
    position: relative;
    color: var(--color-white);
    padding: 80px 0 0 0;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.05;
    filter: invert(1);
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 50px;
}

.f-col {
    flex: 1;
}

.f-col-about {
    flex: 1.5;
}

.f-logo {
    height: 60px;
    margin-bottom: 20px;
}

.f-col-about p {
    font-size: 0.9rem;
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.f-socials {
    display: flex;
    gap: 15px;
}

.f-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    color: var(--color-white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.f-socials a:hover {
    background-color: var(--color-red);
    transform: translateY(-3px);
}

.f-col h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.f-links, .f-contact-info {
    list-style: none;
}

.f-links li, .f-contact-info li {
    margin-bottom: 12px;
}

.f-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.f-links a:hover {
    color: var(--color-red);
}

.f-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #a0aec0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.f-contact-info i {
    color: var(--color-red);
    margin-top: 4px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    background-color: rgba(0,0,0,0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.fb-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fb-inner p {
    color: #718096;
    font-size: 0.85rem;
}

.fb-inner p a {
    color: var(--color-red);
    text-decoration: none;
    font-weight: 500;
}

.fb-inner p a:hover {
    text-decoration: underline;
}

.fb-links {
    display: flex;
    gap: 20px;
}

.fb-links a {
    color: #718096;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.fb-links a:hover {
    color: var(--color-white);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title { font-size: 2.8rem; }
}

@media (max-width: 992px) {
    .hero { height: auto; min-height: 1000px; padding-bottom: 300px; }
    .hero-content { display: flex; flex-direction: row; flex-wrap: wrap; text-align: left; position: relative; }
    .hero-left { max-width: 65%; margin-bottom: 30px; }
    .hero-title { font-size: 2.2rem; }
    
    .right-features-list { display: flex; flex-direction: column; position: absolute; top: 0; right: 0; width: 35%; padding-left: 10px; gap: 20px; text-align: left; }
    .r-feat-text p { display: none; /* keep compact */ }
    
    .hero-features-icons { justify-content: flex-start; gap: 10px; margin-bottom: 30px; }
    .f-item { width: 22%; font-size: 0.9rem; }
    
    .hero-buttons { justify-content: flex-start; margin-bottom: 20px; }
    
    .floating-phones { display: flex; position: static; align-items: flex-end; margin-top: -60px; right: 15px; float: right; margin-bottom: 40px; }
    
    .bc-top-row { flex-direction: column; }
    .bc-left, .bc-right { width: 100%; border-right: none; }
    .bc-left { border-bottom: 1px solid #eee; }
    .form-row { flex-direction: row; flex-wrap: wrap; gap: 15px; }
    .form-row .input-box { flex: 1 1 45%; }
    .form-row .input-box:nth-child(3) { flex: 1 1 100%; }
    .form-row .submit-btn { flex: 1 1 100%; margin-top: 5px; }
    .bc-bottom { flex-direction: row; justify-content: space-between; }
    .bottom-feat { flex: 1; border-right: 1px solid #eee; padding: 10px; display: flex; align-items: center; gap: 8px; }
    .bottom-feat:last-child { border-right: none; }
    .bottom-feat .bf-text h4 { font-size: 0.7rem; }
    .bottom-feat .bf-text p { font-size: 0.6rem; }
    .bottom-feat .bf-icon { width: 24px; height: 24px; font-size: 0.65rem; flex-shrink: 0; }
    .stats-wrapper { position: static; padding: 30px 0; border-radius: 0; margin-top: 20px; }
    .booking-card-container { margin-top: 0; }
    .stats-container { flex-wrap: wrap; gap: 15px; justify-content: center; }
    .stat-col { width: 45%; }
    .stat-divider-line { display: none; }
    
    .st-features { flex-wrap: wrap; gap: 30px 0; }
    .st-col { min-width: 45%; }
    .st-divider { display: none; }

    .airbus-container { flex-direction: column; }
    .airbus-left { padding: 40px 15px 0; text-align: center; }
    .airbus-desc { margin: 0 auto 30px; }
    .airbus-list { display: inline-block; text-align: left; }
    .airbus-right { border-radius: 0; top: 0; margin-top: 30px; }

    .wc-features { flex-wrap: wrap; gap: 40px 0; }
    .wc-col { min-width: 45%; }
    .wc-divider { display: none; }
    
    .b-images-container { flex-wrap: wrap; }
    .b-image-wrapper { min-width: 50%; }
    
    .gcb-container { flex-direction: column; }
    .group-charter-banner::before { background: linear-gradient(to bottom, rgba(248,249,250,1) 0%, rgba(248,249,250,0.9) 40%, rgba(248,249,250,0.2) 100%); }
    .gcb-right { position: relative; margin-top: 30px; justify-content: center; width: 100%; }
    .ideal-for-card { border-radius: 20px; width: 100%; max-width: none; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .main-nav.active { 
        display: block; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0; 
        background: var(--color-white); 
        padding: 20px; 
        box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
        z-index: 1000;
        border-top: 1px solid #eee;
    }
    .main-nav.active ul { 
        flex-direction: column; 
        gap: 15px; 
    }
    .main-nav.active a {
        display: block;
        padding: 5px 0;
    }
    .header-action { display: flex; align-items: center; }
    .mobile-menu-btn { display: inline-block !important; }
    .header-action .btn { padding: 8px 15px; font-size: 0.8rem; }
    
    .hero { min-height: auto; padding-bottom: 0; background-color: var(--color-navy-stats); }
    .hero::before, .hero-bg-overlay { bottom: auto; height: 550px; background-position: 35% center; animation: none; }
    .hero-content { display: flex; flex-direction: row; flex-wrap: wrap; align-content: flex-start; text-align: left; position: relative; }
    .hero-left { max-width: 100%; margin-bottom: 5px; }
    .hero-title { font-size: 1.8rem; }
    .hero-desc { font-size: 0.85rem; margin-bottom: 20px; }
    
    .hero-right { width: 100%; }
    .right-features-list { display: flex; flex-direction: row; position: static; width: 100%; padding-left: 0; transform: none; justify-content: space-between; align-items: flex-start; gap: 5px; margin-top: 0; }
    .r-feat { margin-bottom: 0; flex: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .r-feat i { font-size: 1.2rem; margin-bottom: 5px; }
    .r-feat-text h4 { font-size: 0.6rem; letter-spacing: 0; line-height: 1.2; text-align: center; }
    .r-feat-text p { display: none; }
    
    .hero-features-icons { display: flex; flex-wrap: nowrap; justify-content: space-between; overflow-x: hidden; padding-bottom: 10px; gap: 2px; width: 100%; }
    .f-item { width: 23%; min-width: auto; flex-shrink: 1; text-align: center; }
    .f-item i { font-size: 1.1rem; margin-bottom: 5px; }
    .f-item h4 { font-size: 0.55rem; letter-spacing: 0; line-height: 1.2; }
    .f-divider { display: block; height: 25px; margin: 0; flex-shrink: 0; align-self: center; }
    
    .hero-buttons { display: flex; flex-direction: row; gap: 8px; width: 100%; margin-top: 10px; }
    .hero-buttons .btn { font-size: 0.65rem; padding: 8px 10px; white-space: nowrap; flex: 1; justify-content: space-between; }
    
    .floating-phones { display: flex; position: static; width: 100%; justify-content: flex-end; transform: none; margin-top: 15px; flex-direction: row; }
    .floating-phones .phone-btn { font-size: 0.75rem; padding: 8px 15px; border-radius: 20px; }
    
    .stats-wrapper { margin-top: 0; background-color: var(--color-navy-stats); position: relative; z-index: 5; }
    .stats-container { display: flex; flex-wrap: nowrap; overflow-x: hidden; justify-content: space-between; padding-bottom: 10px; gap: 2px; width: 100%; }
    .stat-col { width: 24%; min-width: auto; flex-shrink: 1; padding: 0; display: flex; flex-direction: row; align-items: center; gap: 4px; }
    .stat-col i { font-size: 1rem; }
    .stat-col h3 { font-size: 0.65rem; margin-bottom: 0; }
    .stat-col p { font-size: 0.45rem; line-height: 1.1; letter-spacing: 0; margin-bottom: 0; }
    .stat-divider-line { display: none; }
    
    .st-col, .wc-col { flex: 0 0 50%; max-width: 50%; padding: 0 5px; }
    .st-col, .wc-col { text-align: left; }
    .st-icon, .wc-icon { margin: 0 0 15px 0; }
    .st-col-title, .wc-col-title { font-size: 0.85rem; }
    .st-col-desc, .wc-col-desc { font-size: 0.75rem; }
    .airbus-section { padding-top: 20px; padding-bottom: 30px; }
    .airbus-left { padding-top: 10px; text-align: left; }
    .airbus-desc { margin: 0 0 30px 0; }
    .wc-header { flex-direction: column; gap: 15px; align-items: flex-start; }
    .wc-title { text-align: left; }
    .wc-line-left, .wc-line-right { display: none; }
    /* Mobile Swipeable Gallery */
    .gallery-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; 
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        padding: 20px 10px;
        background-color: var(--color-gray);
    }
    .gallery-container::-webkit-scrollbar {
        display: none;
    }
    .gallery-item {
        flex: 0 0 85%; /* Shows 1 full image and peeks at the next one */
        scroll-snap-align: center;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        aspect-ratio: 3 / 2;
    }
    .gallery-item img {
        border-radius: 15px;
    }
    
    .bc-bottom { flex-direction: row; }
    .bottom-feat { border-right: 1px solid #eee; border-bottom: none; width: auto; flex: 1; flex-direction: column; padding: 10px 5px; text-align: center; justify-content: center; gap: 5px; }
    .bottom-feat:last-child { border-right: none; border-bottom: none; }
    .bottom-feat .bf-text h4 { font-size: 0.55rem; line-height: 1.1; margin-bottom: 2px; }
    .bottom-feat .bf-text p { font-size: 0.5rem; line-height: 1.1; }
    .right-features-list { flex-wrap: wrap; }
    .hero-features-icons, .stats-container { overflow-x: auto; }
    
    .group-charter-banner { padding: 40px 0 30px 0; }
    .group-charter-banner::before { background: linear-gradient(to bottom, rgba(248,249,250,1) 0%, rgba(248,249,250,0.7) 25%, rgba(248,249,250,0) 80%); }
    .gcb-left { padding-bottom: 30px; }
    .gcb-desc { margin-bottom: 20px; font-size: 0.95rem; }
    
    .gcb-features { flex-wrap: nowrap; justify-content: space-between; gap: 5px; }
    .gcb-f-item { width: 24%; margin-bottom: 0; padding: 0; }
    .gcb-f-item i { font-size: 1.2rem; margin-bottom: 5px; }
    .gcb-f-item h4 { font-size: 0.55rem; letter-spacing: 0; }
    
    .gcb-title { font-size: 1.8rem; }
    
    .ifc-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 15px; row-gap: 5px; }
    .ifc-list li { margin-bottom: 0; font-size: 0.8rem; }
    
    .seamless-travel { padding-top: 40px; }
    .st-header { text-align: left; margin-bottom: 30px; }
    .st-title { font-size: 1.8rem; }
    
    .footer-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 30px 15px;
        padding-top: 10px;
    }
    .f-col-about, .f-col-contact {
        grid-column: 1 / -1;
    }
    .f-col-links, .f-col-services {
        grid-column: span 1;
    }
    .fb-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
