/* AzraJet Premium Styles - Fixed Version */

:root {
    --primary: #4a0707;
    --white: #ffffff;
    --gray: #f8f8f8;
    --text-gray: #666;
    --border: rgba(0, 13, 16, 0.1);
    --shadow: 0 20px 60px rgba(0, 13, 16, 0.1);
    --accent: #bd7055;
    --success: #4CAF50;
}

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

::selection {
    background: var(--primary);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: var(--gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 7px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a2428;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    color: var(--primary);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 20px;
}

/* Typography */
h1 {
    font-size: 7rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.2;
}

h3 {
    font-size: 2.5rem;
    font-weight: 500;
}

p {
    font-size: 1.5rem;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 2rem 3rem;
    background: transparent;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 160px;
    width: auto;
}

.nav-logo sup {
    font-size: 40px;
    margin-left: 5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-tagline {
    font-size: 1.3rem;
    color: var(--primary);
    opacity: 0.7;
    font-style: italic;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
}

.menu-btn:hover {
    transform: scale(1.1);
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 700px;
    height: 100vh;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 4rem;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 13, 16, 0.1);
}

.side-menu.active {
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.menu-content {
    margin-top: 5rem;
}

.menu-section {
    margin-bottom: 3.5rem;
}

.menu-section h3 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.menu-section a {
    display: block;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.6rem;
    padding: 0.7rem 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.menu-section a:hover {
    opacity: 1;
    transform: translateX(10px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: -1;
}

.hero-bottom {
    position: absolute;
    bottom: 5rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    width: 100%;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    padding: 1.2rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 60px;
    font-size: 1.3rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 13, 16, 0.3);
}

/* Statement Section */
.statement {
    padding: 8rem 3rem;
    background: var(--white);
}

.statement-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.values-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.value-card {
    padding: 2.5rem;
    border-right: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
}

.value-card:nth-child(2n) {
    border-right: none;
}

.value-card:nth-child(3),
.value-card:nth-child(4) {
    border-bottom: none;
}

.value-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.value-card p {
    font-size: 1.3rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.statement-text h2 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--primary);
}

/* Booking Form Section - Fixed */
.booking-section {
    padding: 6rem 3rem;
    background: var(--white);
}

.booking-container {
    max-width: 1400px;
    margin: 0 auto;
}

.booking-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary);
}

.flight-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.tab-btn {
    padding: 1rem 2.5rem;
    background: var(--gray);
    border: 2px solid var(--gray);
    border-radius: 60px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.booking-form {
    background: var(--gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.flight-leg {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    position: relative;
}

.leg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.leg-number {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary);
}

.remove-leg-btn {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.remove-leg-btn:hover {
    transform: scale(1.2);
}

/* New Form Row Design */
.flight-form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.form-group {
    position: relative;
    flex: 1;
    min-width: 150px;
}

.form-group.time-group {
    max-width: 120px;
}

.form-group.pax-group {
    max-width: 120px;
}

.form-group.category-group {
    min-width: 200px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary);
    opacity: 0.7;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: var(--text-gray);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 13, 16, 0.1);
}

/* PAX Control - Fixed */
.pax-control {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    height: 44px;
}

.pax-btn {
    width: 36px;
    height: 100%;
    background: var(--gray);
    border: none;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.pax-input {
    flex: 1;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    color: var(--primary);
    width: 48px;
}

.add-leg-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 60px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

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

.contact-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 60px;
    font-size: 1.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 13, 16, 0.3);
}

.form-success {
    text-align: center;
    padding: 4rem;
}

.form-success svg {
    margin-bottom: 2rem;
}

.form-success h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--success);
}

.form-success p {
    font-size: 1.3rem;
    color: var(--text-gray);
}

.airport-suggestions {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    z-index: 10;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.airport-suggestions.active {
    display: block;
}

.airport-item {
    padding: 1rem;
    cursor: pointer;
    color: var(--primary);
    transition: background 0.2s ease;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
}

.airport-item:last-child {
    border-bottom: none;
}

.airport-item:hover {
    background: var(--gray);
}

.airport-item strong {
    color: var(--accent);
}

/* Services Section - Fixed */
.services {
    position: relative;
    padding: 8rem 3rem;
    background: var(--gray);
}

.services-wrapper {
    max-width: 1600px;
    margin: 0 auto;
}

.services-title {
    font-size: 6rem;
    font-weight: 400;
    line-height: 0.9;
    color: var(--primary);
    margin-bottom: 4rem;
    padding-left: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    min-height: 600px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    overflow: hidden;
    background: var(--white);
    border-radius: 20px;
}

.service-card.dark {
    background: var(--primary);
    color: var(--white);
}

.service-card.image {
    padding: 0;
}

.service-card.image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-overlay {
    position: relative;
    z-index: 2;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 13, 16, 0.9), transparent);
}

.service-overlay h3,
.service-card h3 {
    font-size: 3rem;
    font-weight: 400;
    margin: 1rem 0;
}

.service-overlay h3 {
    color: var(--white);
}

.service-card.accent {
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
}

.service-subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.service-content p,
.service-description {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-top: 1rem;
}

.flight-path {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 200px;
    height: 100px;
}

/* Popular Destinations - Simplified */
.destinations {
    padding: 8rem 3rem;
    background: var(--white);
}

.destinations-container {
    max-width: 1400px;
    margin: 0 auto;
}

.destinations-title {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--primary);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 13, 16, 0.1);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 13, 16, 0.2);
}

.destination-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-info {
    padding: 2rem;
}

.destination-info h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.destination-info p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.destination-country {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gray);
    border-radius: 20px;
    font-size: 1.1rem;
    color: var(--primary);
}

/* Flight Manager */
.flight-manager {
    padding: 0;
    background: var(--primary);
    color: var(--white);
}

.manager-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.manager-image {
    position: relative;
    overflow: hidden;
}

.manager-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manager-content {
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.manager-title {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--white);
}

.manager-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.manager-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.manager-features span {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 1.2rem;
}

/* Experience Section */
.experience {
    padding: 8rem 3rem;
    background: var(--white);
}

.experience-container {
    max-width: 1400px;
    margin: 0 auto;
}

.experience-header {
    margin-bottom: 5rem;
}

.experience-title {
    font-size: 15rem;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 3rem;
    color: var(--primary);
}

.experience-title sup {
    font-size: 3.5rem;
}

.experience-intro {
    font-size: 2.8rem;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 100%;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.exp-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem;
    background: var(--gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.exp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 13, 16, 0.15);
}

.exp-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.exp-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
}

.exp-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.exp-content p {
    font-size: 1.4rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Gallery */
.gallery {
    padding: 6rem 3rem;
    background: var(--gray);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-slider {
    position: relative;
    height: 80vh;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-image.active {
    opacity: 1;
}

.gallery-controls {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 3rem;
    border-radius: 60px;
}

.gallery-prev,
.gallery-next {
    background: none;
    border: none;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
    transform: scale(1.3);
}

.gallery-counter {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 8rem 3rem;
    text-align: center;
    background: var(--white);
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-subtitle {
    font-size: 1.8rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: 7rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4rem;
    color: var(--primary);
}

.btn-cta {
    padding: 1.8rem 4rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 60px;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 13, 16, 0.3);
}

/* Footer */
.footer {
    padding: 6rem 3rem 3rem;
    background: var(--primary);
    color: var(--white);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-column a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    padding: 0.5rem 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 1.2rem;
    opacity: 0.6;
    margin-bottom: 1rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 1.5rem 0;
}

.footer-legal a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
}

.disclaimer {
    font-size: 1rem;
    opacity: 0.4;
    margin-top: 1.5rem;
}

/* Popup Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 13, 16, 0.8);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    border-radius: 30px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 50px 100px rgba(0, 13, 16, 0.3);
}

.popup-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 3rem;
    cursor: pointer;
    color: var(--primary);
    transition: transform 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    transform: rotate(90deg);
}

.popup-content {
    padding: 4rem;
}

.popup-content h2 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--primary);
}

.popup-content h3 {
    font-size: 2rem;
    font-weight: 500;
    margin: 2rem 0 1rem;
    color: var(--primary);
}

.popup-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.popup-content ul {
    list-style: none;
    padding-left: 0;
}

.popup-content ul li {
    font-size: 1.3rem;
    color: var(--text-gray);
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.popup-content ul li:before {
    content: "✈";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Subpage Styles */
.subpage-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(135deg, #000d10 0%, #1a2428 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 160px;
    overflow: hidden;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    opacity: 0.3;
    animation: slowZoom 30s ease-in-out infinite alternate;
}

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

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 1;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.8rem;
    opacity: 0.9;
}

.content-section {
    padding: 6rem 3rem;
    background: var(--white);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.content-text h2 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--primary);
}

.content-text p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.content-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-showcase-card {
    background: var(--gray);
    padding: 3rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 13, 16, 0.15);
}

.service-showcase-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.service-showcase-card p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 5rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

/* Mobile Responsive - Enhanced */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    /* Navigation */
    .navbar {
        padding: 1.5rem;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .nav-logo sup {
        font-size: 20px;
    }
    
    .nav-tagline {
        font-size: 1rem;
    }
    
    .menu-btn svg {
        width: 45px;
        height: 45px;
    }
    
    /* Side Menu */
    .side-menu {
        width: 85%;
        padding: 2.5rem;
    }
    
    .menu-section h3 {
        font-size: 1.6rem;
    }
    
    .menu-section a {
        font-size: 1.2rem;
    }
    
    /* Hero - Fixed for Mobile */
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-bottom {
        position: static;
        flex-direction: column;
        align-items: center;
        padding: 0 1.5rem;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .hero-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-primary {
        width: 100%;
        font-size: 1.1rem;
    }
    
    /* Statement */
    .statement {
        padding: 4rem 1.5rem;
    }
    
    .statement-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-section {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        border-right: none !important;
        border-bottom: 1px solid var(--primary);
        padding: 2rem;
    }
    
    .value-card:last-child {
        border-bottom: none;
    }
    
    .value-card h3 {
        font-size: 1.4rem;
    }
    
    .value-card p {
        font-size: 1rem;
    }
    
    .statement-text h2 {
        font-size: 1.8rem;
    }
    
    /* Booking Form - Fixed for Mobile */
    .booking-section {
        padding: 3rem 1.5rem;
    }
    
    .booking-title {
        font-size: 2.2rem;
    }
    
    .flight-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        font-size: 1.1rem;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .flight-form-row {
        flex-direction: column;
    }
    
    .form-group {
        width: 100%;
        max-width: none;
        min-width: 0;
    }
    
    .contact-row {
        grid-template-columns: 1fr;
    }
    
    .form-group input,
    .form-group select {
        font-size: 16px;
        padding: 1rem;
    }
    
    .pax-control {
        height: 50px;
    }
    
    .leg-number {
        font-size: 1.1rem;
    }
    
    .add-leg-btn {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        width: 100%;
    }
    
    .btn-submit {
        font-size: 1.2rem;
    }
    
    /* Services - Fixed for Mobile */
    .services {
        padding: 4rem 1.5rem;
    }
    
    .services-title {
        font-size: 3rem;
        margin-bottom: 3rem;
        padding-left: 0;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        min-height: 300px;
        padding: 2rem;
    }
    
    .service-overlay {
        padding: 2rem;
    }
    
    .service-overlay h3,
    .service-card h3 {
        font-size: 2rem;
    }
    
    .service-subtitle {
        font-size: 0.9rem;
    }
    
    .service-content p,
    .service-description {
        font-size: 1rem;
    }
    
    /* Destinations */
    .destinations {
        padding: 4rem 1.5rem;
    }
    
    .destinations-title {
        font-size: 2.5rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-image {
        height: 200px;
    }
    
    .destination-info h3 {
        font-size: 1.5rem;
    }
    
    .destination-info p {
        font-size: 1rem;
    }
    
    /* Flight Manager */
    .manager-container {
        grid-template-columns: 1fr;
    }
    
    .manager-content {
        padding: 3rem 1.5rem;
    }
    
    .manager-title {
        font-size: 2.5rem;
    }
    
    .manager-text p {
        font-size: 1.2rem;
    }
    
    .manager-features span {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
    
    /* Experience */
    .experience {
        padding: 4rem 1.5rem;
    }
    
    .experience-title {
        font-size: 3.5rem;
    }
    
    .experience-title sup {
        font-size: 1.2rem;
    }
    
    .experience-intro {
        font-size: 1.3rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .exp-card {
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .exp-icon {
        width: 60px;
        height: 60px;
    }
    
    .exp-content h3 {
        font-size: 1.4rem;
    }
    
    .exp-content p {
        font-size: 1rem;
    }
    
    /* Gallery */
    .gallery {
        padding: 3rem 1.5rem;
    }
    
    .gallery-slider {
        height: 40vh;
    }
    
    .gallery-controls {
        padding: 1rem 1.5rem;
        gap: 1rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .gallery-prev,
    .gallery-next {
        font-size: 1.5rem;
    }
    
    .gallery-counter {
        font-size: 1rem;
    }
    
    /* CTA */
    .cta-section {
        padding: 4rem 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .btn-cta {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
    }
    
    /* Footer */
    .footer {
        padding: 4rem 1.5rem 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand h3 {
        font-size: 2rem;
    }
    
    .footer-brand p {
        font-size: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column h4 {
        font-size: 1.3rem;
    }
    
    .footer-column a {
        font-size: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-legal a {
        font-size: 0.9rem;
    }
    
    /* Popup */
    .popup-modal {
        width: 95%;
        max-height: 90vh;
        border-radius: 20px;
    }
    
    .popup-content {
        padding: 2.5rem;
    }
    
    .popup-content h2 {
        font-size: 2rem;
    }
    
    .popup-content h3 {
        font-size: 1.5rem;
    }
    
    .popup-content p {
        font-size: 1rem;
    }
    
    .popup-content ul li {
        font-size: 1rem;
    }
    
    .popup-close {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }
    
    /* Subpage Styles Mobile - Fixed */
    .subpage-hero {
        padding-top: 100px;
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .content-section {
        padding: 3rem 1.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .content-text h2 {
        font-size: 2rem;
    }
    
    .content-text p {
        font-size: 1rem;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-showcase-card {
        padding: 2rem;
    }
    
    .service-showcase-card h3 {
        font-size: 1.5rem;
    }
    
    .service-showcase-card p {
        font-size: 1rem;
    }
    
    /* Stats Grid - Fixed for Mobile */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}