
.airport-section {
    padding: 80px 0;
    text-align: center;
}

.airport-heading {
    margin-bottom: 90px;
}

.airport-heading h2 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.airport-heading h2::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: #C3083F;
    border-radius: 3px;
    box-shadow: 0 0 25px rgba(195, 8, 63, .7);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: .8;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.12);
    }
}

/* ──────────────────────────────────────
       Grid
       ────────────────────────────────────── */
.airport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    justify-items: center;
}

/* ──────────────────────────────────────
       Flip Card (no image / icon)
       ────────────────────────────────────── */
.flip-card {
    width: 100%;
    max-width: 340px;
    height: 220px;
    perspective: 1200px;
    cursor: pointer;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .7s cubic-bezier(.4, 0, .2, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 22px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1.5px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.flip-front {
    background: rgba(255, 255, 255, .06);
}

.flip-back {
    background: linear-gradient(135deg, rgba(195, 8, 63, .2), rgba(195, 8, 63, .1));
    transform: rotateY(180deg);
    border-color: #C3083F;
    box-shadow: 0 0 40px rgba(195, 8, 63, .3);
}

/* ──────────────────────────────────────
       Text Content
       ────────────────────────────────────── */
.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.5px;
    margin-bottom: 6px;
}

.card-subtitle {
    font-size: .95rem;
    color: #b0b0b0;
    font-weight: 500;
}

.card-cta {
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    padding: 8px 22px;
    background: #C3083F;
    border-radius: 50px;
    display: inline-block;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(195, 8, 63, .4);
}

.card-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(195, 8, 63, .5);
}

/* Station Section */
.station-section {
    padding: 150px 0 120px;
    position: relative;
}

.station-heading {
    text-align: center;
    margin-bottom: 110px;
}

.station-section a {
    text-decoration: none;
}

.station-heading h2 {
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: -2.5px;
    color: transparent;
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.station-heading h2::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%) rotate(3deg);
    width: 120px;
    height: 8px;
    background: #C3083F;
    border-radius: 4px;
    box-shadow: 0 0 35px rgba(195, 8, 63, 1);
    animation: slash 2.2s infinite ease-in-out;
}

@keyframes slash {

    0%,
    100% {
        transform: translateX(-50%) rotate(3deg) scale(1);
    }

    50% {
        transform: translateX(-50%) rotate(-3deg) scale(1.15);
    }
}

/* Asymmetric Grid */
.station-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
    justify-items: center;
    align-items: start;
}

.station-grid>*:nth-child(3n+2) {
    margin-top: 60px;
}

.station-grid>*:nth-child(3n+3) {
    margin-top: 120px;
}

/* Expand Card */
.station-card {
    width: 100%;
    max-width: 380px;
    background: rgba(255, 255, 255, .04);
    border-radius: 20px;
    padding: 32px 28px;
    border: 2px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
    transition: all .6s cubic-bezier(.2, .8, .2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 160px;
}

.station-card:hover {
    height: 220px;
    border-color: #C3083F;
    background: rgba(195, 8, 63, .1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .4),
        0 0 50px rgba(195, 8, 63, .3);
}

/* Red Slash Reveal */
.station-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 80px;
    height: 80px;
    background: #C3083F;
    transform: rotate(45deg) scale(0);
    transition: transform .6s ease;
    z-index: 1;
    border-radius: 8px;
}

.station-card:hover::before {
    transform: rotate(45deg) scale(2.5);
}

/* Live Badge */
.live-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    background: #C3083F;
    padding: 4px 10px;
    border-radius: 50px;
    opacity: 0;
    transition: opacity .5s ease .2s;
    box-shadow: 0 0 15px rgba(195, 8, 63, .6);
}

.station-card:hover .live-badge {
    opacity: 1;
}

/* Content */
.station-name {
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1.2px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.station-info {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 600;
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: all .6s ease;
}

.station-card:hover .station-info {
    opacity: 1;
    max-height: 100px;
    margin-top: 8px;
}

.station-cta {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #C3083F;
    background: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition: all .5s ease .1s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

.station-card:hover .station-cta {
    opacity: 1;
    transform: translateY(0);
    animation: pulse-cta .8s infinite alternate;
}

@keyframes pulse-cta {
    0% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
    }

    100% {
        box-shadow: 0 10px 30px rgba(195, 8, 63, .5);
    }
}

.fleet-section {
    padding: 150px 0;
    text-align: center;
}

.fleet-header {
    margin-bottom: 100px;
}

.fleet-header h2 {
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: -2.2px;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.fleet-header h2::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 8px;
    background: #C3083F;
    border-radius: 4px;
    box-shadow: 0 0 35px rgba(195, 8, 63, .9);
    animation: pulse-line 2s infinite ease-in-out;
}

@keyframes pulse-line {

    0%,
    100% {
        width: 100px;
        opacity: .8;
    }

    50% {
        width: 130px;
        opacity: 1;
    }
}

.fleet-header p {
    font-size: 14px;
    color: #b0b0b0;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 500;
}

/* Fleet Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    gap: 40px;
    justify-items: center;
}

/* Car Card */
.car-card {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, .04);
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all .6s cubic-bezier(.2, .8, .2, 1);
    cursor: pointer;
    position: relative;
}

.car-card:hover {
    transform: translateY(-22px);
    border-color: #C3083F;
    box-shadow:
        0 35px 70px rgba(0, 0, 0, .45),
        0 0 55px rgba(195, 8, 63, .35);
}

.car-image {
    width: 100%;
    /* height: 260px; */
    overflow: hidden;
    position: relative;
    background: transparent !important;
    /* Force transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.car-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform .7s ease;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, .4));
}

.car-card:hover .car-image img {
    transform: scale(1.1);
}

/* Red Glow Overlay */
.car-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(195, 8, 63, .18), transparent 70%);
    opacity: 0;
    transition: opacity .5s ease;
    z-index: 1;
}

.car-card:hover .car-image::before {
    opacity: 1;
}

.car-info {
    padding: 28px 24px;
    text-align: left;
}

.car-name {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.8px;
}

.car-specs {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 18px;
    font-weight: 500;
}

.car-cta {
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 800;
    color: #C3083F;
    background: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all .3s ease;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .25);
}

.car-cta:hover {
    background: #C3083F;
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 10px 30px rgba(195, 8, 63, .5);
}

.site-footer {
    background-color: rgba(255, 255, 255, .04);
    color: #fff;
    padding: 50px 20px 25px;
    font-family: "Poppins", sans-serif;
    backdrop-filter: blur(14px);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-col h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 14px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #fff;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-list a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #C3083F;
}

.contact-info strong {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #fff;
}
.footer-bottom a{
    color: #fff;
    
}
.contact-section {
    width: 90%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    margin: 80px auto;
  }

  .contact-section:hover {
    transform: translateY(-5px);
  }

  .contact-title {
    text-align: center;
    font-size: 2.3em;
    color: #C3083F;
    letter-spacing: 2px;
    margin-bottom: 40px;
  }

  .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
  }

  .info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .info-box:hover {
    background: rgba(195, 8, 63, 0.1);
    transform: scale(1.03);
  }

  .info-box h3 {
    color: #C3083F;
    font-size: 1.2em;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .info-box p, .info-box a {
    color: #e6e6e6;
    text-decoration: none;
    font-size: 1em;
    word-wrap: break-word;
  }

  .info-box a:hover {
    color: #C3083F;
  }

  .map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

 
/* Responsive */


@media(max-width:1100px) {
    .station-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .station-grid>*:nth-child(3n+2),
    .station-grid>*:nth-child(3n+3) {
        margin-top: 0;
    }

    .station-grid>*:nth-child(4n+2) {
        margin-top: 80px;
    }
}


@media (max-width: 992px) {
    

    .fleet-header h2 {
        font-size: 3.2rem;
    }

    .car-image {
        height: 240px;
    }
}

@media (max-width: 768px) {
   

    .airport-section {
        padding: 50px 0;
    }

    .airport-heading h2 {
        font-size: 2.5rem;
    }

    .flip-card {
        height: 200px;
    }

    .station-grid {
        grid-template-columns: 1fr;
    }

    .station-grid>* {
        margin-top: 0 !important;
    }

    .station-section {
        padding: 120px 0 100px;
    }

    .station-card {
        height: 140px;
    }

    .station-card:hover {
        height: 260px;
    }

    .fleet-section {
        padding: 120px 0;
    }

    .car-image {
        height: 220px;
        padding: 15px;
    }

}

@media (max-width: 600px) {
    

    .footer-bottom {
        font-size: 12px;
    }
    .contact-section {
      padding: 30px;
      width: 100%;
    }
    
    .contact-title {
      font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    

    .airport-heading h2 {
        font-size: 2rem;
    }

    .flip-card {
        height: 180px;
    }

    .station-heading h2 {
        font-size: 2.6rem;
    }

    .station-name {
        font-size: 1.5rem;
    }

    .fleet-header h2 {
        font-size: 2.6rem;
    }

    .car-name {
        font-size: 1.45rem;
    }

    .car-image {
        height: 200px;
    }
}