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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #E9EEF5;
    background: #0E131B;
    overflow-x: hidden;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    background: rgba(27, 37, 53, 0.95);
    border-radius: 8px;
    padding: 8px 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(77, 183, 232, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.language-selector select {
    background: transparent;
    border: none;
    color: #E9EEF5;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    font-weight: 500;
    min-width: 120px;
}

.language-selector select option {
    background: #1B2535;
    color: #E9EEF5;
}

/* Language selector responsive */
@media (max-width: 1400px) {
    .language-selector {
        top: 85px;
        right: 20px;
        padding: 6px 10px;
    }
    
    .language-selector select {
        font-size: 0.85rem;
        min-width: 100px;
    }
}

@media (max-width: 1024px) {
    .language-selector {
        top: 85px;
        right: 15px;
        padding: 6px 8px;
    }
    
    .language-selector select {
        font-size: 0.8rem;
        min-width: 95px;
    }
}

@media (max-width: 768px) {
    .language-selector {
        position: fixed;
        top: 20px;
        right: 70px;
        left: auto;
        padding: 5px 8px;
        z-index: 10002;
    }
    
    .language-selector select {
        font-size: 0.75rem;
        min-width: 85px;
    }
}

.main-container {
    background: #1B2535;
    height: 630px;
    position: relative;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: #E9EEF5;
    font-weight: 700;
    font-size: 1.8rem;
    transform: translateX(0);
    position: relative;
    margin-bottom: 0.2rem;
}

.logo-subtitle {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: -0.8rem;
}

.by-text {
    color: rgba(233, 238, 245, 0.7);
    font-size: 0.7rem;
    font-weight: 400;
}

.tav-logo {
    height: 16px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.tav-logo:hover {
    opacity: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #E9EEF5;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4DB7E8;
}

.cta-button {
    background: #FFD166;
    color: #0E131B !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #FFA500;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 630px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    padding-top: 0;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 29, 61, 0.9) 0%, rgba(2, 35, 71, 0.9) 100%);
    z-index: 2;
}

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


.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 4;
    height: 630px;
    text-align: left;
    width: 100%;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
    margin-left: 0;
    padding-left: 0;
}


.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: left;
    margin-left: 0;
    padding-left: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: flex-start;
    margin-left: 0;
}



.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #FFD166;
    color: #0E131B;
}

.btn-primary:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 209, 102, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #E9EEF5;
    border: 2px solid #4DB7E8;
}

.btn-secondary:hover {
    background: #4DB7E8;
    color: #0E131B;
    transform: translateY(-2px);
}



.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.airport-control-center {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.airport-control-center i {
    font-size: 4rem;
    color: white;
}

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

/* Features Section */
.features {
    padding: 6rem 0;
    background: #161F2B;
}

.phone-mockups {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.phone-mockup img:hover {
    transform: translateY(-10px);
}

.phone-left,
.phone-right {
    flex: 0 0 250px;
}

.phone-center {
    flex: 0 0 280px;
}

.phone-center img {
    transform: scale(1.2);
}

.phone-center img:hover {
    transform: scale(1.2) translateY(-10px);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E9EEF5;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 0.95rem;
    color: rgba(233, 238, 245, 0.8);
    max-width: 100%;
    margin: 0 auto;
}

.benefits-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(233, 238, 245, 0.95);
    max-width: 900px;
    margin: 1.5rem auto 2rem auto;
    font-weight: 400;
    text-align: justify;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background: #161F2B;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.benefits-text {
    padding-right: 2rem;
}

.benefits-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #E9EEF5;
    margin-bottom: 2rem;
    text-align: left;
}

.screenshot-slider {
    margin-top: 0;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide {
    min-width: 100%;
    display: none;
}

.slider-slide.active {
    display: block;
}

.slider-slide img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}


.slider-btn {
    background: #2B303B;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: #3A3F4A;
    transform: scale(1.05);
}

.slider-btn i {
    font-size: 1.2rem;
    color: white;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-dots {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2B303B;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4A70FF;
    transform: scale(1.1);
}



.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 0;
    background: none;
    border: none;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #4DB7E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.2rem;
    color: #0E131B;
}

.benefit-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E9EEF5;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: rgba(233, 238, 245, 0.9);
    line-height: 1.5;
    font-size: 0.95rem;
}

.benefits-visual {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.software-interface {
    background: #1a2332;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.interface-header {
    background: #2d3748;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #4a5568;
}

.interface-logo {
    font-weight: 700;
    color: #3b82f6;
    font-size: 1.1rem;
}

.interface-nav {
    display: flex;
    gap: 1rem;
}

.nav-item {
    color: #a0aec0;
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-item.active {
    background: #3b82f6;
    color: white;
}

.interface-info {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #a0aec0;
}

.interface-content {
    padding: 1.5rem;
    background: #1a2332;
}

.flight-info {
    background: #2d3748;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

.flight-number {
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
}

.flight-status.on-time {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.flight-details {
    display: flex;
    gap: 1rem;
    color: #a0aec0;
    font-size: 0.9rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-item {
    background: #2d3748;
    padding: 1rem;
    border-radius: 8px;
}

.dashboard-item h4 {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.dashboard-item p {
    color: #a0aec0;
    font-size: 0.8rem;
}

.gantt-chart {
    background: #2d3748;
    padding: 1rem;
    border-radius: 8px;
}

.gantt-header {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.gantt-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gantt-task {
    background: #3b82f6;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    width: fit-content;
}

/* Modules Section */
.modules {
    padding: 6rem 0;
    background: #021d3d;
}

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

.module-card {
    background: #222E44;
    padding: 1.75rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(77, 183, 232, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(77, 183, 232, 0.3);
}

.module-icon {
    width: 80px;
    height: 80px;
    background: #4DB7E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.module-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(0);
}

.module-card:hover .module-icon {
    background: #FFD166;
    transform: scale(1.1);
}

.module-card:hover .module-icon img {
    filter: brightness(0) invert(0);
}

.module-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #E9EEF5;
    margin-bottom: 0;
    margin-top: auto;
    line-height: 1.3;
    padding-top: 1rem;
}

.module-card p {
    color: rgba(233, 238, 245, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.module-image {
    margin-top: 1rem;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-image img {
    width: 120px;
    height: 90px;
    object-fit: contain;
    border-radius: 8px;
}


.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(77, 183, 232, 0.3);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}


.module-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3b82f6;
}

.module-category ul {
    list-style: none;
}

.module-category li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 1.5rem;
}

.module-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Testimonials Section - Removed */

.article-card {
    background: #222E44;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #4DB7E8, #1B2535);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.article-date {
    color: #4DB7E8;
    font-weight: 500;
}

.article-category {
    background: rgba(77, 183, 232, 0.1);
    color: #4DB7E8;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.article-content h3 {
    color: #E9EEF5;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-content p {
    color: rgba(233, 238, 245, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-link {
    color: #FFD166;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: #FFA500;
}

/* Article Accordion */
.article-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-2px);
}

.article-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.article-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(77, 183, 232, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.article-toggle:hover {
    background: rgba(77, 183, 232, 0.2);
}

.toggle-text {
    color: #4DB7E8;
    font-weight: 500;
    font-size: 0.9rem;
}

.toggle-icon {
    color: #4DB7E8;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.article-card.expanded .toggle-icon {
    transform: rotate(180deg);
}

.article-body {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(77, 183, 232, 0.2);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
        padding-top: 1.5rem;
    }
}

.article-full-content {
    color: rgba(233, 238, 245, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.article-full-content p {
    margin-bottom: 1.5rem;
}

.article-full-content h3 {
    color: #E9EEF5;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.article-full-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.article-full-content li {
    margin-bottom: 0.5rem;
}

.article-full-content strong {
    color: #4DB7E8;
    font-weight: 600;
}

.article-cta {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(77, 183, 232, 0.2);
}

.article-cta .btn-primary {
    background: #FFD166;
    color: #0E131B;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.article-cta .btn-primary:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

/* Mobile Accordion */
@media (max-width: 768px) {
    .article-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .article-image {
        width: 100%;
        height: 200px;
    }
    
    .article-full-content {
        font-size: 0.95rem;
    }
    
    .article-full-content h3 {
        font-size: 1.2rem;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-content p {
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-placeholder {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Latest News Section */
.news {
    padding: 6rem 0;
    background: #0E131B;
}

.news-slider-container {
    position: relative;
    margin-top: 3rem;
    padding: 0 60px;
}

.news-slider-wrapper {
    overflow: hidden;
}

.news-slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.news-slider-track .news-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: calc(33.333% - 1.333rem);
}

.news-card {
    background: #1B2535;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #FFFFFF;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4DB7E8;
    letter-spacing: 1px;
    margin: 1.5rem 1.5rem 0.5rem 1.5rem;
    text-transform: uppercase;
}

.news-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E9EEF5;
    margin: 0 1.5rem 1rem 1.5rem;
    line-height: 1.3;
}

.news-card p {
    color: rgba(233, 238, 245, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0 1.5rem 1.5rem 1.5rem;
    flex: 1;
}

.news-link {
    color: #FFD166;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 1.5rem 1.5rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: #FFA500;
    gap: 0.75rem;
}

.news-link i {
    font-size: 0.85rem;
}

.news-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.news-slider-btn {
    background: #2B303B;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    z-index: 10;
}

.news-slider-btn:hover {
    background: #4DB7E8;
    transform: scale(1.1);
}

.news-slider-btn i {
    font-size: 1.2rem;
    color: white;
}

.news-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.news-slider-btn:disabled:hover {
    background: #2B303B;
    transform: scale(1);
}

/* Responsive News Section */
@media (max-width: 1024px) {
    .news-slider-track .news-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .news-slider-container {
        padding: 0 40px;
    }
    
    .news-slider-track .news-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .news-slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .news-slider-btn i {
        font-size: 1rem;
    }
}

/* News Modal */
.news-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.news-modal-content {
    background: #1B2535;
    margin: 0 auto;
    padding: 0;
    border-radius: 16px;
    width: 95%;
    max-width: 1200px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.4s ease;
    max-height: 100vh;
    overflow-y: auto;
}

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

.news-modal-close {
    position: sticky;
    top: 0;
    right: 0;
    float: right;
    font-size: 2.5rem;
    font-weight: 300;
    color: #E9EEF5;
    cursor: pointer;
    padding: 0 0.5rem 0.25rem 0.5rem;
    z-index: 1;
    transition: color 0.3s ease;
}

.news-modal-close:hover,
.news-modal-close:focus {
    color: #FFD166;
}

.news-modal-header {
    padding: 0 2rem 1rem 2rem;
    clear: both;
}

.news-modal-category {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4DB7E8;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.news-modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #E9EEF5;
    line-height: 1.3;
    margin: 0;
}

.news-modal-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #FFFFFF;
}

.news-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.news-modal-body a[href^="http"] {
    color: #FFD166;
}

.news-modal-body a[href^="http"]:hover {
    color: #FFA500;
    text-decoration: none;
}

.news-modal-body {
    padding: 2rem;
    color: rgba(233, 238, 245, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
}

.news-modal-body h3 {
    color: #E9EEF5;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.news-modal-body h4 {
    color: #4DB7E8;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.news-modal-body p {
    margin-bottom: 1.5rem;
}

.news-modal-body ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.news-modal-body li {
    margin-bottom: 0.75rem;
}

.news-modal-body strong {
    color: #FFD166;
    font-weight: 600;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .news-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .news-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .news-modal-image {
        height: 250px;
    }
    
    .news-modal-body {
        padding: 1.5rem;
        font-size: 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 20px;
    color: #3b82f6;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #4DB7E8;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 0;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    min-height: 650px;
    overflow: hidden;
}

/* Microsoft Dynamics 365 Form Styling */
.contact-form [data-form-id] {
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
}

.contact-form [data-form-id] > * {
    padding: 0 !important;
}

.contact-form [data-form-id] input,
.contact-form [data-form-id] textarea,
.contact-form [data-form-id] select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form [data-form-id] input::placeholder,
.contact-form [data-form-id] textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form [data-form-id] input:focus,
.contact-form [data-form-id] textarea:focus,
.contact-form [data-form-id] select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form [data-form-id] button[type="submit"] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form [data-form-id] button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.contact-form [data-form-id] label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Phone input styling handled by Microsoft Dynamics 365 form */

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E9EEF5;
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-tav-logo {
    height: 32px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

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

/* Scroll Down Button - Mouse icon centered between sections */
.scroll-down-button {
    position: absolute !important;
    bottom: -30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 209, 102, 0.1) !important;
    border: 2px solid #FFD166 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99999 !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #FFD166 !important;
    font-size: 30px !important;
}

.scroll-down-button:hover {
    background: rgba(255, 165, 0, 0.2) !important;
    border-color: #FFA500 !important;
    color: #FFA500 !important;
    transform: translateX(-50%) scale(1.1) !important;
}

.scroll-down-button i {
    pointer-events: none !important;
}

/* Ensure hero section is relative for absolute button */
.hero {
    position: relative !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .by-text {
        font-size: 0.6rem;
    }
    
    .tav-logo {
        height: 14px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(180deg, #011529 0%, #0a1929 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        border-top: 1px solid rgba(77, 183, 232, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        color: #E9EEF5;
        padding: 0.75rem 0;
    }
    
    .nav-menu a:hover {
        color: #4DB7E8;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        min-height: 4.3rem;
        text-align: center;
    }
    
    .hero-content p {
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-text {
        padding-right: 0;
    }
    
    .slider-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .slider-controls {
        padding: 0 0.5rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn i {
        font-size: 1rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .module-card {
        padding: 1.25rem;
    }
    
    .module-image img {
        width: 100px;
        height: 75px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .airport-operations {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .client-logos {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 1.4rem;
        min-height: 3.4rem;
        text-align: center;
    }
    
    .hero-content p {
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .phone-mockups {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .phone-left,
    .phone-right,
    .phone-center {
        flex: none;
        width: 100%;
        max-width: 250px;
    }
    
    .phone-center img {
        transform: scale(1);
    }
    
    .phone-center img:hover {
        transform: scale(1) translateY(-10px);
    }
    
    .airport-operations {
        grid-template-columns: 1fr;
    }
    
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.benefit-item,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}


/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #011529;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}
