.services {
    background: #fff;
    padding: 100px 20px;
}

.services-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.services-title {
    font-size: 48px;
    font-weight: 700;
    color: #31572c;
    margin-bottom: 80px;
    position: relative;
}

.services-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #4f772d;
    display: block;
    margin-top: 20px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.service-item {
    position: relative;
    padding: 50px 40px;
    border: 1px solid rgba(79, 119, 45, 0.25);
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #31572c, #4f772d);
    transform: translateY(100%);
    transition: transform 0.45s ease;
    z-index: 0;
}

.service-item:hover::before {
    transform: translateY(0);
}

.service-item * {
    position: relative;
    z-index: 1;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 64px;
    font-weight: 700;
    color: rgba(79, 119, 45, 0.15);
    transition: color 0.4s ease;
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #31572c;
    transition: color 0.4s ease;
}

.service-item p {
    font-size: 16px;
    line-height: 27px;
    color: #000;
    transition: color 0.4s ease;
}

.service-item:hover h3,
.service-item:hover p {
    color: #fff;
}

.service-item:hover .service-number {
    color: rgba(255, 255, 255, 0.35);
}

/* Mobile tuning */
@media (max-width: 600px) {
    .services-title {
        font-size: 36px;
    }

    .service-item {
        padding: 40px 30px;
    }
}

.airports {
    background: #fff;
    padding: 100px 20px;
}

.airports-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.airports-header {
    max-width: 600px;
    margin-bottom: 70px;
}

.airports-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #31572c;
    margin-bottom: 15px;
}

.airports-header p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
}

.airports-grid {
    border-top: 1px solid rgba(79, 119, 45, 0.2);
}

.airport-row {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 10px;
    border-bottom: 1px solid rgba(79, 119, 45, 0.2);
    transition: background 0.3s ease;
}

.airport-row img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.airport-row a {
    font-size: 22px;
    font-weight: 500;
    color: #31572c;
}

.airport-row:hover {
    background: rgba(144, 169, 85, 0.1);
}

/* Mobile */
@media (max-width: 600px) {
    .airports-header h2 {
        font-size: 36px;
    }

    .airport-row a {
        font-size: 20px;
    }
}

.stations {
    background: #f4f7f0;
    /* subtle green-ish white */
    padding: 120px 20px;
}

.stations-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.stations-header {
    text-align: center;
    margin-bottom: 60px;
}

.stations-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #31572c;
    margin-bottom: 12px;
}

.stations-header p {
    font-size: 16px;
    color: #000;
    line-height: 26px;
}

.stations-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 10px;

}

.stations-strip::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.station-card {
    min-width: 220px;
    flex-shrink: 0;
    background: #4f772d;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(79, 119, 45, 0.2);
}

.station-card img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.station-card a {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

.station-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(79, 119, 45, 0.2);
}

.station-card:hover span {
    color: #fff;
}

/* Mobile */
@media (max-width: 600px) {
    .stations-header h2 {
        font-size: 36px;
    }

    .station-card a {
        font-size: 18px;
    }
}

.fleet {
    background: #fff;
    padding: 100px 20px;
}

.fleet-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-header {
    text-align: center;
    margin-bottom: 60px;
}

.fleet-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #31572c;
    margin-bottom: 12px;
}

.fleet-header p {
    font-size: 16px;
    color: #000;
    line-height: 26px;
    max-width: 700px;
    margin: 0 auto;
}

.fleet-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.fleet-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.fleet-card h3 {
    font-size: 24px;
    color: #31572c;
    margin-bottom: 20px;
}

.fleet-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fleet-card ul li {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.fleet-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4f772d;
    font-weight: bold;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(79, 119, 45, 0.2);
}

.fleet-card.highlight {
    border: 2px solid #31572c;
    background: #4f772d10;
    /* subtle greenish highlight */
}

.fleet-card.highlight h3 {
    color: #31572c;
}

/* Mobile */
@media (max-width: 600px) {
    .fleet-header h2 {
        font-size: 36px;
    }

    .fleet-card h3 {
        font-size: 22px;
    }

    .fleet-card ul li {
        font-size: 15px;
    }
}

.site-footer {
    background: #31572c;
    color: #fff;
    padding: 60px 20px 30px 20px;
    font-family: Arial, sans-serif;
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-wrap h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
    border-bottom: 2px solid #4f772d;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-wrap p,
.footer-wrap li,
.footer-wrap a {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-links li:hover a {
    color: #fff;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: #4f772d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    background: #fff;
    color: #31572c;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;

}

.footer-bottom p {
    font-size: 14px;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .footer-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.contact {
    background: #fff;
    padding: 110px 20px;
}

.contact-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: 700;
    color: #4f772d;
    margin-bottom: 18px;
}

.contact-text {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin-bottom: 45px;
    max-width: 480px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    border-left: 4px solid #90a955;
    padding-left: 20px;
}

.contact-item .label {
    display: block;
    font-size: 14px;
    color: #000;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-item .value {
    font-size: 20px;
    color: #4f772d;
    font-weight: 500;
}

.contact-item .value a {
    color: #4f772d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item .value a:hover {
    color: #90a955;
}

/* Map */
.contact-map iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(79, 119, 45, 0.15);
}

/* Mobile */
@media (max-width: 800px) {
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info h2 {
        font-size: 36px;
    }

    .contact-map iframe {
        height: 360px;
    }
}