
body {font-family: 'Segoe UI', sans-serif;}

/*our services*/

/* ==========================================
   FLY EUROPA TOURS
   SERVICES PAGE CSS
=========================================== */

:root{

    --navy:#0A2A66;
    --sky:#00BFFF;
    --gold:#D4AF37;
    --white:#ffffff;
    --light:#f6f9fd;
    --text:#475569;
    --border:#e6edf5;

}


/* ==========================================
   HERO
=========================================== */

.services-hero{

    min-height:600px;

    display:flex;

    align-items:center;

    position:relative;

    background:

    url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34?w=1800")
    center/cover no-repeat;

}

.services-hero-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        90deg,
        rgba(10,42,102,.96),
        rgba(10,42,102,.68),
        rgba(10,42,102,.25)
    );

}

.services-hero-content{

    position:relative;

    z-index:2;

    max-width:800px;

    padding-top:80px;

}

.services-badge{

    display:inline-block;

    background:var(--gold);

    color:#fff;

    padding:9px 20px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1.5px;

    margin-bottom:20px;

}

.services-hero h1{

    color:#fff;

    font-size:62px;

    line-height:1.12;

    font-weight:700;

    margin-bottom:25px;

}

.services-hero h1 span{

    color:var(--gold);

}

.services-hero p{

    color:#e8f0fb;

    font-size:19px;

    line-height:1.8;

    max-width:720px;

    margin-bottom:35px;

}

.services-hero-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.services-btn-primary,
.services-btn-whatsapp{

    padding:15px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.services-btn-primary{

    background:var(--gold);

    color:#fff;

}

.services-btn-primary:hover{

    background:#fff;

    color:var(--navy);

    transform:translateY(-3px);

}

.services-btn-whatsapp{

    background:#25D366;

    color:#fff;

}

.services-btn-whatsapp:hover{

    background:#1ebe5d;

    color:#fff;

    transform:translateY(-3px);

}


/* ==========================================
   INTRO
=========================================== */

.services-intro{

    padding:90px 0 45px;

    background:#fff;

}

.section-heading{

    max-width:850px;

    margin:auto;

}

.section-label{

    color:var(--gold);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

}

.section-heading h2{

    color:var(--navy);

    font-size:42px;

    font-weight:700;

    margin:12px 0 18px;

}

.section-heading p{

    color:var(--text);

    line-height:1.8;

    margin:0 auto;

}


/* ==========================================
   SERVICES LIST
=========================================== */

.services-list{

    padding:45px 0 100px;

    background:#fff;

}

.service-card{

    position:relative;

    height:100%;

    background:#fff;

    border:1px solid var(--border);

    border-radius:22px;

    padding:35px 30px;

    overflow:hidden;

    transition:

        transform .4s ease,

        box-shadow .4s ease,

        border-color .4s ease;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:0;

    background:var(--gold);

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.35);

    box-shadow:

        0 25px 60px rgba(10,42,102,.10);

}

.service-card:hover::before{

    height:100%;

}

.service-number{

    position:absolute;

    top:20px;

    right:25px;

    font-size:13px;

    font-weight:700;

    color:#cbd5e1;

}

.service-icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:

        linear-gradient(
            135deg,
            rgba(10,42,102,.10),
            rgba(0,191,255,.10)
        );

    color:var(--navy);

    font-size:27px;

    margin-bottom:25px;

    transition:.4s;

}

.service-card:hover .service-icon{

    background:var(--navy);

    color:var(--gold);

    transform:rotateY(180deg);

}

.service-card h3{

    color:var(--navy);

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}

.service-card p{

    color:var(--text);

    font-size:15px;

    line-height:1.8;

    margin-bottom:22px;

}

.service-card a{

    color:var(--navy);

    text-decoration:none;

    font-size:14px;

    font-weight:700;

}

.service-card a i{

    margin-left:7px;

    transition:.3s;

}

.service-card:hover a{

    color:var(--gold);

}

.service-card:hover a i{

    transform:translateX(5px);

}


/* ==========================================
   BENEFITS
=========================================== */

.services-benefits{

    padding:100px 0;

    background:var(--light);

}

.benefit-card{

    height:100%;

    padding:35px;

    text-align:center;

    background:#fff;

    border-radius:22px;

    box-shadow:0 10px 40px rgba(10,42,102,.06);

    transition:.35s;

}

.benefit-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(10,42,102,.12);

}

.benefit-card > i{

    font-size:36px;

    color:var(--gold);

    margin-bottom:20px;

}

.benefit-card h3{

    color:var(--navy);

    font-size:21px;

    font-weight:700;

}

.benefit-card p{

    color:var(--text);

    line-height:1.8;

    margin:0;

}


/* ==========================================
   CTA
=========================================== */

.services-cta{

    padding:80px 0;

    background:

        linear-gradient(
            135deg,
            var(--navy),
            #063c8d
        );

}

.services-cta-inner{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

}

.services-cta-inner > div:first-child{

    max-width:760px;

}

.services-cta-inner span{

    color:var(--gold);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

}

.services-cta-inner h2{

    color:#fff;

    font-size:40px;

    font-weight:700;

    margin:12px 0;

}

.services-cta-inner p{

    color:#dbeafe;

    margin:0;

    line-height:1.7;

}

.services-cta-buttons{

    display:flex;

    gap:12px;

    flex-shrink:0;

}

.cta-quote,
.cta-wa{

    padding:15px 25px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    white-space:nowrap;

    transition:.35s;

}

.cta-quote{

    background:var(--gold);

    color:#fff;

}

.cta-wa{

    background:#25D366;

    color:#fff;

}

.cta-quote:hover,
.cta-wa:hover{

    color:#fff;

    transform:translateY(-4px);

}


/* ==========================================
   RESPONSIVE
=========================================== */

@media(max-width:991px){

    .services-hero{

        min-height:520px;

    }

    .services-hero h1{

        font-size:46px;

    }

    .services-cta-inner{

        flex-direction:column;

        text-align:center;

    }

}

@media(max-width:576px){

    .services-hero{

        min-height:500px;

    }

    .services-hero h1{

        font-size:34px;

    }

    .services-hero p{

        font-size:16px;

    }

    .services-btn-primary,
    .services-btn-whatsapp{

        width:100%;

        text-align:center;

    }

    .section-heading h2{

        font-size:31px;

    }

    .service-card{

        padding:30px 25px;

    }

    .services-cta-inner h2{

        font-size:30px;

    }

    .services-cta-buttons{

        width:100%;

        flex-direction:column;

    }

    .cta-quote,
    .cta-wa{

        width:100%;

        text-align:center;

    }

}/* ==========================================
   SCROLL REVEAL
=========================================== */

.service-hidden{

    opacity:0;

    transform:translateY(35px);

    transition:

        opacity .7s ease,

        transform .7s ease;

}

.service-visible{

    opacity:1;

    transform:translateY(0);

}