.sec-about-dark {
    background: #0e0f11;
    color: #e5e5e5;
    padding: 80px 0;
}

/* WRAPPER */
.wrap {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}

/* CONTENT BLOCKS */
.about-block {
    margin-bottom: 40px;
}

.about-block h2 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #ffffff;
    text-transform: capitalize;
}

.about-block p {
    font-size: 16px;
    line-height: 1.75;
    color: #cfcfcf;
    margin-bottom: 14px;
}

/* LIST */
.terminal-list {
    padding-left: 18px;
    margin: 16px 0;
}

.terminal-list li {
    margin-bottom: 8px;
    color: #ffc107;
}

/* SPLIT SECTION */
.about-split {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 30px;
    align-items: center;
    margin: 60px 0;
}

/* IMAGE */
.about-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

/* TEXT */
.about-text h2 {
    color: #fff;
    margin-bottom: 12px;
}

.about-text p {
    color: #d0d0d0;
    margin-bottom: 20px;
}

/* BUTTON */
.btn-dark-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: #ffc107;
    color: #111;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-dark-call:hover {
    background: #ffb300;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-split {
        grid-template-columns: 1fr;
    }
    .sec-about-dark{
    padding:40px 0 ;}
}

@media (max-width: 480px) {
    .about-block h2 {
        font-size: 22px;
    }
}


/* SECTION */
.sec-airport {
    padding: 60px 0;
    background: #f8f9fa;
}

/* WRAPPER */
.wrap {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* SECTION HEAD */
.section-head {
    text-align: center;
    margin-bottom: 40px;
}

.section-head h3 {
    font-size: 28px;
    text-transform: capitalize;
    font-weight: 700;
    color: #111;
}

/* GRID */
.airport-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* CARD */
.airport-card {
    display: block;
    position: relative;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.airport-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* OVERLAY */
.airport-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
}

/* CONTENT */
.airport-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.airport-content h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 6px;
    text-transform: capitalize;
}

.airport-content .underline {
    display: block;
    width: 40px;
    height: 3px;
    background: #ffc107;
    transition: width 0.3s ease;
}

/* HOVER EFFECT */
.airport-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.25);
}

.airport-card:hover img {
    transform: scale(1.08);
    opacity: 0.9;
}

.airport-card:hover .underline {
    width: 70px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .airport-grid {
        grid-template-columns: 1fr;
    }

    .airport-card img {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .airport-card img {
        height: 190px;
    }

    .airport-content h4 {
        font-size: 18px;
    }
}


/* ================= FLEET SECTION ================= */
.sec-fleet {
    padding: 60px 0;
    background: #0f0f0f;
}

.fleet-container {
    max-width: 1280px;
    margin: auto;
    padding: 0 15px;
}

/* ================= HEADER ================= */
.fleet-header {
    text-align: center;
    margin-bottom: 40px;
}

.fleet-header h3 {
    font-size: 28px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
}

/* ================= GRID ================= */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ================= CARD ================= */
.fleet-card {
    background: #161616;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.7);
}

/* ================= IMAGE ================= */
.fleet-img {
    width: 100%;
    overflow: hidden;
}

.fleet-img img {
    width: 100%;

    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.fleet-card:hover img {
    transform: scale(1.08);
}

/* ================= CONTENT ================= */
.fleet-content {
    padding: 18px;
    text-align: center;
}

.fleet-content h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* ================= ICON LIST ================= */
.fleet-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.fleet-icons li {
    color: #ccc;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fleet-icons i {
    color: #e63946;
    font-size: 16px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .fleet-header h3 {
        font-size: 24px;
    }
}


.sec-station-light {
    background: #f8f9fb;
    padding: 80px 0;
}

/* WRAPPER */
.wrap {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}

/* SECTION HEADER */
.section-head {
    text-align: center;
    margin-bottom: 40px;
}

.section-head h3 {
    font-size: 30px;
    color: #111;
    text-transform: capitalize;
}

/* GRID */
.station-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* CARD */
.station-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.station-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

/* CARD INFO */
.card-info {
    padding: 18px;
    text-align: center;
}

.card-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    text-transform: capitalize;
}

/* HOVER EFFECT */
.station-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.station-card:hover h4 {
    color: #e63946;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .station-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .station-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .station-card img {
        height: 170px;
    }
}

@media (max-width: 480px) {
    .station-grid {
        grid-template-columns: 1fr;
    }

    .section-head h3 {
        font-size: 24px;
    }
}


.site-footer {
    background: #0e0f11;
    color: #cfcfcf;
    font-size: 14px;
}

/* WRAPPER */
.footer-wrap {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}

/* TOP FOOTER */
.footer-top {
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* GRID */
.footer-top .footer-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* HEADINGS */
.site-footer h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 16px;
    text-transform: capitalize;
}

/* TEXT */
.site-footer p {
    line-height: 1.7;
    margin-bottom: 16px;
}

/* LINKS */
.footer-links,
.footer-info,
.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-info a {
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-info a:hover {
    color: #e63946;
}

/* INFO ICONS */
.footer-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-info i {
    color: #e63946;
    margin-top: 3px;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #e63946;
}

/* BOTTOM FOOTER */
.footer-bottom {
    padding: 18px 0;
    background: #0b0d11;
}

.footer-bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: #cfcfcf;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #e63946;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-top .footer-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-top .footer-wrap {
        grid-template-columns: 1fr;
    }

    .footer-bottom-wrap {
        text-align: center;
        flex-direction: column;
    }
}



/* CONTACT SECTION */
.htq-contact {
    background: #f4f6f8 !important;
    padding: 80px 15px;
    font-family: Arial, Helvetica, sans-serif;
}

.htq-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.htq-header {
    text-align: center;

}

.htq-header h2 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #111;
}

.htq-header p {
    color: #666;
    font-size: 16px;
}

/* GRID */
.htq-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* CARD */
.htq-card {
    background: rgba(18, 18, 18, 0.96);
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    color: #fff;
    transition: 0.35s ease;
}

.htq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}



/* TEXT */
.htq-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.htq-card p {
    font-size: 14px;
    color: #d1d1d1;
    line-height: 1.6;
}

.htq-card a {
    display: inline-block;
    margin-top: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #e63946;
}

.htq-card a:hover {
    color: #ffffff;
}

/* MAP */
.htq-map iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* MOBILE */
@media (max-width: 600px) {
    .htq-header h2 {
        font-size: 26px;
    }

    .htq-map iframe {
        height: 300px;
    }
}
