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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    padding-bottom: 80px; /* Space for sticky button */
}

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

/* Beautiful Header Navigation */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0052CC;
    text-decoration: none;
}

.logo i {
    font-size: 1.8rem;
    color: #0052CC;
}

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

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #0052CC;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0052CC;
    transition: width 0.3s ease;
}

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

.header-cta {
    display: flex;
    align-items: center;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #0052CC;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
}

.header-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.4);
    background: #0047B3;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/* Sticky Top Bar (Mobile Only) */
.sticky-top-bar {
    display: none;
    background: #0052CC;
    color: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

.phone-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

/* Enhanced Hero Section */
.hero {
    background-image: url(/china-cargo-airlines-884399_1280.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 82 204 / 58%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    color: #FFFFFF;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.1s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    min-width: 200px;
}

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

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #0052CC;
    border-radius: 50%;
    font-size: 1.2rem;
    color: white;
}

.feature-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    color:#0052cc;
}

.feature-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.feature-desc {
    font-size: 0.8rem;
    opacity: 0.8;
}

.hero-cta {
    animation: fadeInUp 0.8s ease 0.5s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #0052CC;
    color: white;
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: #ffffff;
    color: #0052CC;
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 82, 204, 0.6);
}

.cta-button.urgent {
    background: #0052CC;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.4);
}

.cta-button.urgent:hover {
    background: #0047B3;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 82, 204, 0.6);
}

.cta-button.final {
    background: #0052CC;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.4);
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.cta-button span {
    font-size: 1.1rem;
}

.cta-button small {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
}

.cta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-info i {
    color: #FFFFFF;
}

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

/* Services Section */
.services {
    background-image: url(/image.png);
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #f8f9fa;
  
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333333;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: #0052CC;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333333;
}

.service-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #0052CC;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 82, 204, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
}

.service-cta:hover {
    background: #0047B3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.4);
    color: white;
}

.service-cta i {
    font-size: 0.8rem;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0052CC;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 80px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    position: relative;
}

.step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.step-visual {
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 120px;
    height: 120px;
    background: #0052CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.3);
    transition: all 0.3s ease;
}

.step-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.4);
}

.step-icon i {
    font-size: 2.5rem;
    color: white;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #0052CC;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    position: absolute;
    top: -10px;
    right: -10px;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
}

.step-connector {
    width: 4px;
    height: 60px;
    background: #0052CC;
    border-radius: 2px;
    margin: 20px 0;
}

.step-content {
    flex: 1;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #0052CC;
    transition: all 0.3s ease;
}

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

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333333;
}

.step-content p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background: #f8f9fa;
    color: #0052CC;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #e9ecef;
}

/* Process Summary */
.process-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-top: 60px;
    padding: 40px 0;
}

.summary-card {
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
}

.summary-icon {
    width: 80px;
    height: 80px;
    background: #0052CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.3);
    position: relative;
}

.summary-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #0052CC;
    border-radius: 50%;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.summary-card:hover .summary-icon::after {
    opacity: 0.6;
    transform: scale(1.1);
}

.summary-icon i {
    font-size: 2rem;
    color: white;
}

.summary-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-card p {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0052CC;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 82, 204, 0.1);
}

.cta-button.final{
    background: #ffffff;
    color: #0052CC;
    padding: 10px 20px;

  
}

/* Airlines Section */
.airlines {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.airlines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.2;
    z-index: 1;
}

.airlines .container {
    position: relative;
    z-index: 2;
}

.airlines .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.airlines .section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333333;
}

.airlines .section-subtitle {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

/* Airlines Slider */
.airlines-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin: 0 -10px;
    width: 100%;
}

.airlines-slider {
    display: flex;
    animation: slideAirlines 25s linear infinite;
    width: max-content;
    gap: 30px;
    padding: 0 10px;
}

.airlines-slider:hover {
    animation-play-state: paused;
}

.airline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 100px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 15px;
    border: 1px solid #f0f0f0;
    flex-shrink: 0;
    margin: 0 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #0052CC;
}

/*.airline-item:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);*/
/*    border-color: #0052CC;*/
/*}*/
.banner-btn{
    text-decoration: none;
}

.airline-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-bottom: 8px;
    /*filter: grayscale(100%);*/
    /*transition: filter 0.3s ease;*/
}

.airline-item:hover img {
    filter: grayscale(0%);
}

.airline-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0047b3;
    text-align: center;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.airline-item:hover .airline-name {
    color: #0052CC;
}

/* Slider Animation */
@keyframes slideAirlines {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Ensure smooth animation */
.airlines-slider {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Mobile responsive for sliding */
@media (max-width: 768px) {
    .airlines-slider {
        animation: slideAirlinesMobile 20s linear infinite;
        gap: 20px;
        padding: 0 5px;
    }
    .step-number {
        right: -30px;
    }
    
    .airline-item {
        width: 120px;
        height: 90px;
        padding: 12px;
        flex-shrink: 0;
        margin: 0 3px;
    }
    
    .airline-item img {
        max-width: 60px;
        max-height: 35px;
    }
    
    .airline-name {
        font-size: 0.75rem;
    }
    
    @keyframes slideAirlinesMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}

/* Urgency Section */
.urgency {
    padding: 80px 0;
    background: linear-gradient(135deg, #D72638, #FF6B00);
    color: white;
    text-align: center;
}

.urgency-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.urgency h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.urgency p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.timer-item {
    text-align: center;
}

.timer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
}

.timer-label {
    display: block;
    font-size: 0.9rem;
    margin-top: 8px;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333333;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #0052CC;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #333333;
    line-height: 1.6;
}

.testimonial-author {
    color: #666666;
    font-size: 0.9rem;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: #f8f9fa;
}

.trust h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333333;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trust-item i {
    font-size: 1.5rem;
    color: #0052CC;
    min-width: 30px;
}

.trust-item span {
    font-weight: 500;
    color: #333333;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: #0052CC;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.phone-display {
    margin-bottom: 40px;
}

.phone-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.phone-number:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Footer Navigation */
.footer-nav {
    background: #2c3e50;
    padding: 50px 0 30px;
    color: white;
    border-top: 1px solid #34495e;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #0052CC;
    padding-bottom: 8px;
    display: inline-block;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
    list-style: none;
}

.footer-column ul li:before {
    content: "•";
    color: #0052CC;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}

.footer-column ul li a:hover {
    color: #0052CC;
    transform: translateX(5px);
    text-decoration: underline;
}

.footer-column .contact-info p {
    color: #bdc3c7;
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column .contact-info p i {
    color: #0052CC;
    width: 16px;
    font-size: 1rem;
}

.footer-column .contact-info p a {
    color: rgb(157 172 183);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-column .contact-info p a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Disclaimer */
.disclaimer {
    padding: 20px 0;
    background: #1a252f;
    text-align: center;
    color: #95a5a6;
    border-top: 1px solid #34495e;
}

.disclaimer p {
    color: #95a5a6;
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Bottom Sticky Button */
.bottom-sticky-button {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0052CC;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.sticky-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 20px;
    background: #0052CC;
    transition: background 0.3s ease;
    width: 100%;
    text-align: center;
}

.sticky-cta:hover {
    background: #0047B3;
    transform: translateY(-2px);
}

.sticky-cta i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .main-header {
        padding: 0.5rem 0;
    }
    
    .footer-nav {
        padding: 30px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-column ul li a {
        font-size: 0.9rem;
    }
    
    .footer-column .contact-info p {
        font-size: 0.9rem;
    }
    
    .header-nav {
        padding: 0.5rem 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    .disclaimer{
        padding-bottom: 30px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .sticky-top-bar {
        display: none;
    }
    
    .bottom-sticky-button {
        display: block !important;
    }
    
    .hero {
        padding: 100px 0 60px;
        background-attachment: scroll;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-item {
        min-width: auto;
        padding: 0.8rem 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .process-timeline,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .process-summary {
        flex-direction: column;
        gap: 40px;
    }
    
    .airline-item {
        min-width: 120px;
        height: 100px;
        margin: 0 15px;
        padding: 15px;
    }
    
    .airline-item img {
        max-width: 60px;
        max-height: 40px;
    }
    
    .airline-name {
        font-size: 0.8rem;
    }
    
    /* Mobile How It Works */
    .step-item {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }
    
    .step-visual {
        order: 1;
    }
    
    .step-content {
        order: 2;
        text-align: center;
    }
    
    .step-connector {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .step-icon {
       display: none;
    }
    
    .step-icon i {
        font-size: 2rem;
    }
    
    .countdown-timer {
        flex-direction: column;
        gap: 15px;
    }
    
    .timer-number {
        font-size: 2rem;
        min-width: 60px;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .phone-number {
        font-size: 1.5rem;
        padding: 15px 30px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .service-cta {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-width: 120px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .services h2,
    .how-it-works h2,
    .testimonials h2,
    .trust h2 {
        font-size: 1.6rem;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .phone-number {
        font-size: 1.3rem;
        padding: 12px 25px;
    }
    
    .airlines {
        padding: 60px 0;
    }
    
    .airlines .section-header h2 {
        font-size: 1.8rem;
    }
    
    .how-it-works {
        padding: 60px 0;
    }
    
    .process-timeline {
        gap: 40px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .summary-card {
        margin-bottom: 20px;
    }
    
    .summary-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .summary-icon i {
        font-size: 1.5rem;
    }
    
    .summary-card h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .summary-card p {
        font-size: 1.4rem;
    }
    
    .service-cta {
        padding: 6px 12px;
        font-size: 0.75rem;
        min-width: 100px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column .contact-info p {
        justify-content: center;
    }
}

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

/* Focus styles for accessibility */
.cta-button:focus,
.phone-link:focus,
.phone-number:focus,
.sticky-cta:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* Loading animation for countdown */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.timer-number {
    animation: pulse 2s infinite;
} 

