.airport-section {
    margin: 80px auto;
    padding: 0 20px;
    position: relative;
    animation: fadeDown 1s ease forwards;
    text-align: center;
}

.airport-section h2 {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 60px;
    display: inline-block;
    position: relative;

}

.airport-section h2::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background-color: #c9a227;
    margin: 10px auto 0;
    animation: lineGrow 1s ease forwards 0.3s;
}

.secondary-left {
    position: absolute;
    width: 5px;
    height: 20px;
    background: #c9a227;
    transform: rotate(2deg);
    left: -20px;
    top: 0;
}

.secondary-left::before {
    position: absolute;
    content: '';
    width: 3px;
    height: 10px;
    background: #c9a227;
    left: 8px;
    top: 7px;
}

.secondary-right {
    position: absolute;
    width: 5px;
    height: 20px;
    background: #c9a227;
    transform: rotate(2deg);
    right: -20px;
    top: 0;
}

.secondary-right::before {
    position: absolute;
    content: '';
    width: 3px;
    height: 10px;
    background: #c9a227;
    right: 8px;
    top: 7px;
}


@keyframes lineGrow {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 60%;
        opacity: 1;
    }
}

.airport-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.airport-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 60px 30px;
    text-align: left;
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    animation: cardRise 0.8s forwards;
    transition: all 0.4s ease;
    border-top: 5px solid transparent;
}

.airport-card:nth-child(1) {
    animation-delay: 0.2s;
}

.airport-card:nth-child(2) {
    animation-delay: 0.4s;
}

.airport-card:nth-child(3) {
    animation-delay: 0.6s;
}

.airport-card:nth-child(4) {
    animation-delay: 0.8s;
}

.airport-card:nth-child(5) {
    animation-delay: 1s;
}

@keyframes cardRise {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.airport-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.airport-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #000000;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
}

.airport-card h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #c9a227;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.airport-card:hover h3::after {
    width: 80px;
}

.airport-card p {
    font-size: 15px;
    color: #444444;
    line-height: 24px;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.airport-card:hover p {
    color: #000000;
}

.airport-btn {
    display: inline-block;
    padding: 10px 24px;
    
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none !important;
}



.airport-btn span {
    position: relative;
    z-index: 1;
}

.airport-btn:hover {
    color: #fff !important;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SECTION */
.station-section {
    width: 100%;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeDown 1s ease forwards;
}

.station-section h2 {
    font-size: 36px;
    color: #000000;
    font-weight: 800;
    margin-bottom: 70px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.station-section h2::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #c9a227;
    animation: lineGrow 1s ease forwards 0.5s;
}

/* Stations */
.station-track {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    margin: 0 auto;
    padding-top: 30px;
}

/* CONNECTING LINE */
.station-track::before {
    content: "";
    position: absolute;
    top: 90px;
    left: 10%;
    right: 10%;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.08);
    z-index: 0;
    animation: lineGrowWide 1.5s ease forwards;
}

.station-track2 {
    margin-top: 60px;
}

/* STATION ITEM */
.station {
    width: 200px;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(50px);
    animation: riseIn 1s forwards;
    transition: all 0.4s ease;
}

.station:nth-child(1) {
    animation-delay: 0.2s;
}

.station:nth-child(2) {
    animation-delay: 0.4s;
}

.station:nth-child(3) {
    animation-delay: 0.6s;
}

.station:nth-child(4) {
    animation-delay: 0.8s;
}

.station:nth-child(5) {
    animation-delay: 1s;
}

/* ICON */
.station-img {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px #c9a3275e;
    transition: all 0.4s ease;
    position: relative;
    animation: float 3s ease-in-out infinite;
    margin: auto;
}


/* TEXT */
.station h3 {
    font-size: 20px;
    color: #000000;
    margin-top: 18px;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}

.station p {
    font-size: 14px;
    color: #444444;
    line-height: 22px;
    margin-bottom: 20px;
}

/* BUTTON */
.station a {
    display: inline-block;
    color: #ffffff;
    padding: 9px 24px;
    border-radius: 25px;
    text-decoration: none !important;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}





/* Hover Effects */
/* .station:hover img {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 25px rgba(9, 165, 205, 0.5);
} */



/* KEYFRAMES */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineGrow {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 60%;
        opacity: 1;
    }
}

@keyframes lineGrowWide {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 80%;
        opacity: 1;
    }
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.fleet-section {
    width: 100%;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.fleet-section h2 {
    font-size: 36px;
    color: #000000;
    font-weight: 800;
    margin-bottom: 70px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.fleet-section h2::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #c9a227;
    animation: lineGrow 1s ease forwards 0.5s;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fleet-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 0 40px;
}

.fleet-item {
    width: 25%;
    background: #111;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(9, 165, 205, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    opacity: 0;
    transform: translateY(60px);
    animation: fadeUp 1s ease forwards;
}

.fleet-item:nth-child(1) {
    animation-delay: 0.3s;
}

.fleet-item:nth-child(2) {
    animation-delay: 0.6s;
}

.fleet-item:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fleet-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(9, 165, 205, 0.5);
}


.fleet-item img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.fleet-item:hover img {
    transform: translateY(-10px);
}

.fleet-item h3 {
    font-size: 20px;
    color: #c9a227;
    margin: 20px 0 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.fleet-item p {
    font-size: 15px;
    color: #FFF;
    margin-bottom: 20px;
    line-height: 1.6;
}

footer {
    background: #000000;
    padding: 80px 60px 40px;
    border-top: 2px solid #c9a227;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-col h4 {
    font-size: 22px;
    color: #c9a227;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #c9a227;
    margin-top: 6px;
    border-radius: 2px;
}

.footer-col p {
    font-size: 15px;
    color: #FFF;
    line-height: 1.7;
}

.footer-links a {
    display: block;
    color: #FFF;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: #c9a227;
    transform: translateX(5px);
}

.footer-contact p {
    color: #FFF;
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-contact p span {
    color: #c9a227;
    font-weight: 600;
}

.footer-contact p a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    font-size: 14px;
    border-top: 1px solid #111;
    margin-top: 50px;
}

.footer-bottom p {
    color: #FFF;
}

.footer-bottom p a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

/* subtle glowing animation background */
footer::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(9, 165, 205, 0.1);
    border-radius: 50%;
    animation: glow 6s infinite alternate ease-in-out;
}

@keyframes glow {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

/* * Contact */
 .contact-sec {
    padding: 80px 0;
}

.main-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
}

.contact-left {
    padding: 15px;
}

.contact-left .map iframe {
    width: 100%;
    height: 600px;
}

.contact-left,
.contact-right {
    width: 50%;
    flex: 0 0 auto;
}

.get-us {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-img {
    background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 0px 13px #cdcdcd;
    border-radius: 10px;
}

.info-content span {
    display: block;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-content a {
    font-size: 15px;
    font-weight: 500;
    color: #c9a227;
    text-decoration: none;
}

.info-content p {
    font-size: 15px;
    font-weight: 500;
    color: #c9a227;
    margin: 0;
}

.contact-head {
    margin-bottom: 50px;
}

.contact-head h2 {
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.contact-head p {
    font-size: 14px;
    font-weight: 500;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .airport-section h2 {
        font-size: 32px;
    }

    .airport-card {
        text-align: center;
    }

    .airport-card h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .station-section h2 {
        font-size: 32px;
    }

    .station-track::before {
        display: none;
    }

    .station {
        width: 100%;
        max-width: 300px;
    }

    footer {
        padding: 60px 30px 30px;
    }

    .footer-col h3 {
        font-size: 20px;
    }

    .main-contact {
        flex-direction: column-reverse;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .airport-card h3 {
        font-size: 20px;
    }

    .airport-card p {
        font-size: 14px;
    }

    .station h3 {
        font-size: 18px;
    }

    .station p {
        font-size: 13px;
    }
}

@media screen and (max-width: 900px) {
    .fleet-container {
        flex-direction: column;
    }

    .fleet-item {
        width: 85%;
    }
}