/* ========================================
   INLAIR LIMITED - Premium Website Styles
   ======================================== */

/* CSS Variables for Easy Customization */
:root {
    /* Primary Colors */
    --primary-color: #0a1628;
    --secondary-color: #1e3a5f;
    --accent-color: #c9a227;
    --accent-light: #e8c547;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #343a40;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #2d5a87 100%);
    --gradient-accent: linear-gradient(135deg, #c9a227 0%, #e8c547 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 22, 40, 0.9) 0%, rgba(30, 58, 95, 0.8) 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Shadows */
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ========================================
   Navigation
   ======================================== */
/* Top Logo Bar */
.top-logo-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--primary-color);
    padding: 0;
    text-align: center;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.navbar {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2px 0;
    background: rgba(10, 22, 40, 0.98);
}

.navbar.scrolled .nav-link {
    color: var(--primary-color);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo */
.logo-img {
    height: 70px;
    width: auto;
    transition: var(--transition-fast);
}

.navbar.scrolled .logo-img {
    height: 45px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 4px;
    transition: var(--transition-fast);
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--accent-color);
    letter-spacing: 3px;
    font-weight: 500;
}

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

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar.scrolled .nav-link {
    color: var(--primary-color);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.nav-hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-hamburger span {
    background: var(--primary-color);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--accent-color);
    font-size: 1rem;
}

.hero-badge span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 1.1;
}

.title-line.accent {
    color: var(--accent-color);
    font-size: clamp(2.5rem, 8vw, 5rem);
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    padding-right: 30px;
}

.hero-location i {
    color: var(--accent-color);
}

.hero-iata {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: var(--gradient-accent);
    padding: 20px 40px;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-medium);
}

.iata-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.iata-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
}

.hero-scroll {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-left: 0;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ========================================
   Section Styles
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
}

.section-number::before,
.section-number::after {
    content: '—';
    margin: 0 15px;
    color: var(--accent-color);
    opacity: 0.5;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header.light .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 400;
}

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--dark-gray);
    line-height: 1.9;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--light-gray);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.card-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.card-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--gray);
    text-align: left;
    list-style: none;
}

.card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.card-highlight {
    background: rgba(201, 162, 39, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.card-highlight strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* ========================================
   Advantages Section
   ======================================== */
.advantages {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    position: relative;
}

.advantages::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition-medium);
}

.advantage-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
}

.advantage-image {
    height: 180px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(30, 58, 95, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 2rem;
    color: var(--primary-color);
}

.advantage-content {
    padding: 30px;
}

.advantage-title {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.advantage-points .point {
    margin-bottom: 15px;
}

.advantage-points .point strong {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.advantage-points .point p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 5px;
    line-height: 1.7;
}

/* ========================================
   Future Plans Section
   ======================================== */
.future {
    padding: var(--section-padding);
    background: var(--off-white);
}

.future-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.future-strategy {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.9;
}

.future-phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.future-phase {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--light-gray);
    transition: var(--transition-medium);
}

.future-phase:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.phase-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phase-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.phase-title {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.phase-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.phase-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.phase-item p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   Partners Section
   ======================================== */
.partners {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    position: relative;
}

.partners-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.partners-badges {
    text-align: center;
}

.partners-badge-title,
.ndc-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 30px;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    min-height: 100px;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition-fast);
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

.partners-ndc {
    text-align: center;
}

.ndc-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.ndc-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--accent-color);
    padding: 15px 30px;
    border-radius: 50px;
}

.ndc-badge i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.ndc-badge span {
    color: var(--white);
    font-weight: 500;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.service-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--off-white);
    border-radius: 20px;
    transition: var(--transition-fast);
}

.service-item:hover {
    background: var(--gradient-primary);
}

.service-item:hover .service-icon,
.service-item:hover h4 {
    color: var(--white);
}

.service-item:hover .service-icon {
    background: var(--gradient-accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-fast);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: var(--transition-fast);
}

.service-item:hover .service-icon i {
    color: var(--primary-color);
}

.service-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.contact-main {
    background: var(--gradient-primary);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
}

.contact-heading {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--primary-color);
    padding: 20px 0 0px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: -3px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 6px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    opacity: 0.9;
    transition: var(--transition-fast);
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-tagline {
    font-size: 1.5rem;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.footer-copy {
    margin-top: -25px;
     
    width: 100%;
    text-align: center;
    font-size: 1rem;
}

.footer-copy p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Animations
   ======================================== */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .advantages-grid,
    .future-phases {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .top-logo-bar {
        height: 60px;
        padding: 0;
    }
    
    .top-logo-img {
        height: 40px;
    }
    
    .navbar {
        top: 60px;
    }
    
    .navbar.scrolled {
        top: 60px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 220px;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: var(--transition-medium);
    }
    
    .nav-menu .nav-link {
        font-size: 0.9rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .navbar.scrolled .nav-menu .nav-link {
        color: var(--white);
    }
    
    .about-cards {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid,
    .future-phases {
        grid-template-columns: 1fr;
    }
    
    .contact-services {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .top-logo-bar {
        height: 51px;
        padding: 0;
    }
    
    .top-logo-img {
        height: 35px;
    }
    
    .navbar {
        top: 51px;
    }
    
    .navbar.scrolled {
        top: 51px;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .footer-logo-img {
        height: 60px;
    }
    
    .title-line {
        letter-spacing: 4px;
    }
    
    .hero-iata {
        padding: 15px 30px;
    }
    
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ndc-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-services {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-main {
        padding: 40px 25px;
    }
    
    .contact-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-badge {
        padding: 10px 18px;
    }
    
    .hero-badge span {
        font-size: 0.75rem;
    }
    
    .about-card,
    .future-phase,
    .advantage-card {
        padding: 30px 20px;
    }
    
    .advantage-content {
        padding: 25px 20px;
    }
}

/* ========================================
   Mobile Enhancements (Portrait & Landscape)
   ======================================== */

/* Small phones (portrait) */
@media (max-width: 380px) {
    html {
        font-size: 13px;
    }
    
    .top-logo-img {
        height: 30px;
    }
    
    .hero-title {
        margin-bottom: 15px;
    }
    
    .title-line {
        letter-spacing: 2px;
    }
    
    .hero-badge {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        padding: 8px 14px;
    }
    
    .hero-badge i {
        font-size: 0.85rem;
    }
    
    .hero-badge span {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .hero-location {
        font-size: 0.95rem;
        flex-wrap: wrap;
        justify-content: center;
        padding-right: 0;
    }
    
    .hero-scroll {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .intro-text,
    .future-strategy {
        font-size: 1rem;
    }
    
    .card-title,
    .advantage-title,
    .phase-title {
        font-size: 1.15rem;
    }
    
    .card-desc,
    .advantage-points .point p,
    .phase-item p {
        font-size: 0.85rem;
    }
    
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .partner-logo {
        padding: 15px;
        min-height: 70px;
    }
    
    .partner-logo img {
        max-height: 40px;
    }
    
    .contact-heading {
        font-size: 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.4rem;
    }
    
    .footer-tagline {
        font-size: 1.1rem;
    }
    
    .footer-logo-img {
        height: 50px;
    }
}

/* Landscape mobile phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 140px 20px 80px;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-badge {
        margin-bottom: 15px;
        padding: 8px 16px;
    }
    
    .hero-title {
        margin-bottom: 10px;
    }
    
    .title-line {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .title-line.accent {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .hero-location {
        margin-bottom: 15px;
        font-size: 0.9rem;
    }
    
    .hero-scroll {
        margin-top: 10px;
    }
    
    .hero-wave svg {
        height: 40px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

/* Fix nav hamburger position on mobile */
@media (max-width: 992px) {
    .nav-container {
        justify-content: flex-end;
        padding: 15px 20px;
    }
    
    .nav-hamburger {
        position: relative;
        z-index: 1002;
    }
    
    .nav-menu {
        padding-top: 80px;
    }
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
    .nav-link {
        font-size: 1.1rem;
        padding: 10px 0;
    }
    
    .card-list li {
        padding-left: 15px;
        margin-bottom: 10px;
    }
    
    .phase-item h4 {
        font-size: 0.95rem;
    }
    
    /* Fix partners section */
    .partners-badge-title,
    .ndc-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .partner-logo {
        min-height: 80px;
    }
    
    .partner-logo img {
        max-height: 45px;
    }
    
    /* Fix contact services text overflow */
    .service-item h4 {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .service-item {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
    
    /* Fix contact grid */
    .contact-item {
        gap: 8px;
    }
    
    .contact-value {
        font-size: 0.9rem;
        word-break: break-word;
    }
    
    .contact-label {
        font-size: 0.7rem;
    }
    
    /* Footer fixes */
    .footer-tagline span {
        display: inline-block;
    }
    
    .footer-tagline .ml-3 {
        margin-left: 2px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .service-item h4 {
        font-size: 0.8rem;
    }
    
    .contact-value {
        font-size: 0.85rem;
    }
    
    .ndc-badge {
        padding: 12px 20px;
    }
    
    .ndc-badge span {
        font-size: 0.85rem;
    }
}

/* Fix landscape orientation issues */
@media (max-height: 600px) and (orientation: landscape) {
    .top-logo-bar {
        height: 38px;
        padding: 0;
    }
    
    .top-logo-img {
        height: 28px;
    }
    
    .navbar {
        top: 38px;
        padding: 0;
    }
    
    .nav-container {
        padding: 8px 20px;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-wave svg {
        height: 30px;
    }
    
    /* Landscape: Use desktop-like multi-column layouts */
    .about-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .about-card {
        padding: 25px 15px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .advantage-card {
        padding: 0;
    }
    
    .advantage-image {
        height: 100px;
    }
    
    .advantage-content {
        padding: 15px;
    }
    
    .future-phases {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .future-phase {
        padding: 20px;
    }
    
    .partners-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .contact-services {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    .service-item {
        padding: 20px 10px;
    }
    
    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .contact-main {
        padding: 30px 20px;
    }
    
    .contact-heading {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
}

/* Ensure proper scaling on high DPI devices */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-badge,
    .ndc-badge {
        backface-visibility: hidden;
        transform: translateZ(0);
    }
}

.ml-3{
    margin-left: 3px;
}

/* Fix for iPhone X and newer with notch */
@supports (padding-top: env(safe-area-inset-top)) {
    .top-logo-bar {
        padding-top: env(safe-area-inset-top);
    }
    
    .footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
}