/* =========================================================
   SRI LANGTA BABA AVIATION
   SERVICES PAGE CSS
========================================================= */


/* =========================================================
   SERVICES HERO
========================================================= */

.services-hero {

    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    overflow: hidden;
    
    margin-top:50px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}


.services-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(255,90,0,.20),
            transparent 30%
        );

    pointer-events: none;

}


.services-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,27,58,.95),
            rgba(8,27,58,.65),
            rgba(8,27,58,.30)
        );

}


.services-hero-content {

    position: relative;

    z-index: 2;

    padding-top: 80px;

    color: #fff;

}


.services-hero-small {

    display: inline-block;

    margin-bottom: 15px;

    color: #ff5a00;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.services-hero h1 {

    margin: 0 0 18px;

    font-size: 58px;

    line-height: 1.1;

    font-weight: 800;

}

.services-hero h1 span {

    color: #ff5a00;

}

.services-hero p {

    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,.85);

    font-size: 18px;

    line-height: 1.8;

}



/* =========================================================
   COMMON
========================================================= */

.section-padding {

    padding: 90px 0;

}


.section-label {

    display: inline-block;

    margin-bottom: 12px;

    color: #ff5a00;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.orange-line {

    width: 65px;

    height: 4px;

    margin: 20px 0 25px;

    background: #ff5a00;

    border-radius: 5px;

}


.text-center {

    text-align: center;

}



/* =========================================================
   INTRODUCTION
========================================================= */

.services-intro {

    background: #fff;

}


.services-intro-grid {

    display: grid;

    grid-template-columns: 1.25fr .75fr;

    gap: 70px;

    align-items: center;

}


.services-intro-content h2 {

    margin: 0;

    color: #081B3A;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 700;

}


.services-intro-content p {

    margin: 0 0 18px;

    color: #5f6f85;

    font-size: 15px;

    line-height: 1.9;

}


.services-intro-content strong {

    color: #081B3A;

    font-weight: 700;

}



/* =========================================================
   HIGHLIGHT CARDS
========================================================= */

.services-intro-highlight {

    display: flex;

    flex-direction: column;

    gap: 22px;

}


.highlight-card {

    padding: 30px;

    background: #f5f8fc;

    border: 1px solid #e5ebf2;

    border-left: 4px solid #ff5a00;

    border-radius: 12px;

    transition: all .3s ease;

}


.highlight-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(8,27,58,.10);

}


.highlight-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;

    background: #081B3A;

    color: #ff5a00;

    border-radius: 50%;

    font-size: 21px;

}


.highlight-card h3 {

    margin: 0 0 10px;

    color: #081B3A;

    font-size: 20px;

    font-weight: 700;

}


.highlight-card p {

    margin: 0;

    color: #65748a;

    font-size: 14px;

    line-height: 1.8;

}



/* =========================================================
   AVIATION SERVICES SECTION
========================================================= */

.aviation-services-section {

    background: #f5f8fc;

}


.section-heading {

    max-width: 800px;

    margin: 0 auto 55px;

}


.section-heading h2 {

    margin: 0 0 15px;

    color: #081B3A;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 700;

}


.section-heading p {

    max-width: 700px;

    margin: 0 auto;

    color: #65748a;

    font-size: 15px;

    line-height: 1.8;

}



/* =========================================================
   SERVICE CARDS
========================================================= */

.aviation-services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}


.aviation-service-card {

    position: relative;

    min-height: 300px;

    padding: 32px 30px;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e5eaf0;

    border-radius: 14px;

    box-shadow: 0 8px 25px rgba(8,27,58,.04);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

}


.aviation-service-card::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 4px;

    background: #ff5a00;

    transition: width .3s ease;

}


.aviation-service-card:hover {

    transform: translateY(-8px);

    border-color: rgba(255,90,0,.35);

    box-shadow: 0 18px 40px rgba(8,27,58,.11);

}


.aviation-service-card:hover::after {

    width: 100%;

}


.service-number {

    position: absolute;

    top: 20px;

    right: 25px;

    color: #e9edf3;

    font-size: 42px;

    line-height: 1;

    font-weight: 800;

}


.service-icon {

    position: relative;

    z-index: 2;

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    background: #081B3A;

    color: #ff5a00;

    border-radius: 12px;

    font-size: 24px;

}


.aviation-service-card h3 {

    position: relative;

    z-index: 2;

    margin: 0 0 14px;

    color: #081B3A;

    font-size: 19px;

    line-height: 1.4;

    font-weight: 700;

}


.aviation-service-card p {

    position: relative;

    z-index: 2;

    margin: 0;

    color: #68778c;

    font-size: 14px;

    line-height: 1.8;

}



/* =========================================================
   CTA
========================================================= */

.services-cta {

    padding: 70px 0;

    background: #081B3A;

}


.services-cta-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.services-cta-content span {

    display: block;

    margin-bottom: 10px;

    color: #ff5a00;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

}


.services-cta-content h2 {

    margin: 0 0 12px;

    color: #fff;

    font-size: 34px;

    line-height: 1.3;

}


.services-cta-content p {

    max-width: 700px;

    margin: 0;

    color: rgba(255,255,255,.72);

    font-size: 14px;

    line-height: 1.8;

}


.services-cta-btn {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 12px;

}



/* =========================================================
   USEFUL LINKS
========================================================= */

.useful-links-section {

    background: #fff;

}


.useful-links-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

}


.useful-link-card {

    display: flex;

    align-items: center;

    gap: 16px;

    min-height: 75px;

    padding: 18px 20px;

    background: #f6f8fb;

    border: 1px solid #e6ebf1;

    border-radius: 10px;

    color: #081B3A;

    text-decoration: none;

    transition: all .3s ease;

}


.useful-link-card > i:first-child {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    background: #081B3A;

    color: #ff5a00;

    border-radius: 8px;

}


.useful-link-card span {

    flex: 1;

    color: #24344d;

    font-size: 14px;

    line-height: 1.5;

    font-weight: 600;

}


.useful-link-card .link-arrow {

    color: #9aa6b6;

    font-size: 13px;

    transition: transform .3s ease;

}


.useful-link-card:hover {

    background: #081B3A;

    border-color: #081B3A;

    transform: translateX(5px);

}


.useful-link-card:hover span {

    color: #fff;

}


.useful-link-card:hover .link-arrow {

    color: #ff5a00;

    transform: translate(3px, -3px);

}



/* =========================================================
   SERVICES PAGE MOBILE
========================================================= */

@media (max-width: 991px) {

    .services-intro-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .aviation-services-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .services-cta-content {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media (max-width: 768px) {

    .services-hero {

        min-height: 360px;

    }


    .services-hero-content {

        padding-top: 50px;

    }


    .services-hero h1 {

        font-size: 40px;

    }


    .services-hero p {

        font-size: 15px;

    }


    .section-padding {

        padding: 65px 0;

    }


    .services-intro-content h2 {

        font-size: 32px;

    }


    .section-heading h2 {

        font-size: 32px;

    }


    .aviation-services-grid {

        grid-template-columns: 1fr;

        gap: 18px;

    }


    .aviation-service-card {

        min-height: auto;

        padding: 28px 25px;

    }


    .services-cta {

        padding: 55px 0;

    }


    .services-cta-content h2 {

        font-size: 28px;

    }


    .useful-links-grid {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 576px) {

    .services-hero {

        min-height: 330px;

    }


    .services-hero h1 {

        font-size: 32px;

    }


    .services-hero-small {

        font-size: 10px;

        letter-spacing: 1.5px;

    }


    .services-hero p {

        font-size: 14px;

        line-height: 1.7;

    }


    .services-intro-content h2 {

        font-size: 28px;

    }


    .section-heading h2 {

        font-size: 28px;

    }


    .highlight-card {

        padding: 25px;

    }


    .aviation-service-card {

        padding: 25px 22px;

    }


    .service-icon {

        width: 55px;

        height: 55px;

        font-size: 21px;

    }


    .aviation-service-card h3 {

        font-size: 18px;

    }


    .services-cta-content h2 {

        font-size: 25px;

    }


    .services-cta-btn {

        width: auto;

        max-width: 100%;

        padding: 12px 18px;

        font-size: 14px;

    }


    .useful-link-card {

        padding: 15px;

    }


    .useful-link-card span {

        font-size: 13px;

    }

}