/* =====================================================
   KONOZ TRAVEL
   B2B PAGE
===================================================== */


/* =====================================================
   HERO
===================================================== */

.b2b-hero{

    position:relative;

    min-height:820px;

    display:flex;

    align-items:center;

    background-image:
        url("../images/b2b-hero.jpg");

    background-size:cover;

    background-position:center;

    overflow:hidden;

}


.b2b-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(8,22,45,.90),
            rgba(8,22,45,.72),
            rgba(8,22,45,.40)
        );

}


.b2b-hero .container{

    position:relative;

    z-index:2;

}


.b2b-hero-content{

    width:100%;

    max-width:900px;

    margin:0 auto;

    padding-top:90px;

    text-align:center;

}


.b2b-label{

    display:inline-block;

    margin-bottom:20px;

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    letter-spacing:3px;

}


.b2b-hero h1{

    max-width:900px;

    margin:0 auto 25px;

    color:#fff;

    font-family:'Poppins',sans-serif;

    font-size:58px;

    line-height:1.15;

    font-weight:600;

}


.b2b-hero h1 span{

    color:var(--primary);

}


.b2b-hero p{

    max-width:700px;

    margin:0 auto 35px;

    color:rgba(255,255,255,.86);

    font-size:17px;

    line-height:1.8;

}


.b2b-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}


.b2b-primary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 40px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}


.b2b-primary-btn:hover{

    background:var(--secondary);

    color:#fff;

    transform:translateY(-3px);

}


.b2b-secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 38px;

    border:2px solid #fff;

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}


.b2b-secondary-btn:hover{

    background:#fff;

    color:#0D2C54;

    transform:translateY(-3px);

}


/* =====================================================
   HERO HIGHLIGHTS
===================================================== */

.b2b-hero-highlights{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:45px;

    margin-top:45px;

}


.hero-highlight{

    display:flex;

    flex-direction:column;

    padding-left:18px;

    border-left:2px solid var(--primary);

    text-align:left;

}


.hero-highlight strong{

    color:#fff;

    font-size:14px;

    font-weight:600;

}


.hero-highlight span{

    margin-top:3px;

    color:rgba(255,255,255,.68);

    font-size:11px;

}


/* =====================================================
   GENERAL SECTION HEADING
===================================================== */

.b2b-section-heading{

    max-width:800px;

    margin:0 auto 65px;

    text-align:center;

}


.b2b-section-heading > span{

    display:block;

    margin-bottom:14px;

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    letter-spacing:3px;

}


.b2b-section-heading h2{

    margin-bottom:20px;

    color:#0D2C54;

    font-size:44px;

    line-height:1.25;

    font-weight:600;

}


.b2b-section-heading p{

    color:#666;

    font-size:16px;

    line-height:1.9;

}


/* =====================================================
   ABOUT
===================================================== */

.b2b-about{

    padding:110px 0;

    background:#fff;

}


/* =====================================================
   WHY KONOZ
===================================================== */

.why-konoz{

    padding:110px 0;

    background:#F8F9FB;

}


.b2b-benefits-grid{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:30px;

}


.b2b-benefit-card{

    position:relative;

    padding:42px 35px;

    background:#fff;

    border:1px solid #eeeeee;

    border-radius:20px;

    overflow:hidden;

    transition:.35s ease;

}


.b2b-benefit-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.10);

}


.b2b-benefit-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:3px;

    background:var(--primary);

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s ease;

}


.b2b-benefit-card:hover::before{

    transform:scaleX(1);

}


.benefit-number{

    display:flex;

    align-items:center;

    justify-content:center;

    width:42px;

    height:42px;

    margin-bottom:25px;

    border:1px solid var(--primary);

    border-radius:50%;

    color:var(--primary);

    font-size:12px;

    font-weight:600;

    letter-spacing:1px;

}


.b2b-benefit-card h3{

    margin-bottom:15px;

    color:#0D2C54;

    font-size:20px;

    font-weight:600;

}


.b2b-benefit-card p{

    color:#666;

    font-size:14px;

    line-height:1.8;

}


/* =====================================================
   THE KONOZ ADVANTAGE
===================================================== */

.konoz-advantage{

    padding:120px 0;

    background:#fff;

}


.advantage-workflow{

    position:relative;

    max-width:1100px;

    margin:auto;

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:60px 40px;

}


.advantage-workflow::before{

    content:"";

    position:absolute;

    top:30px;

    left:12%;

    right:12%;

    height:1px;

    background:#E6E6E6;

    z-index:0;

}


.advantage-step{

    position:relative;

    z-index:1;

    text-align:center;

}


.advantage-number{

    display:flex;

    align-items:center;

    justify-content:center;

    width:60px;

    height:60px;

    margin:0 auto 25px;

    background:#fff;

    border:1px solid var(--primary);

    border-radius:50%;

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    box-shadow:
        0 8px 25px rgba(0,0,0,.06);

    transition:.35s ease;

}


.advantage-content h3{

    margin-bottom:12px;

    color:#0D2C54;

    font-size:19px;

    font-weight:600;

}


.advantage-content p{

    max-width:280px;

    margin:auto;

    color:#666;

    font-size:14px;

    line-height:1.8;

}


.advantage-step:hover .advantage-number{

    background:var(--primary);

    color:#fff;

    transform:translateY(-4px);

    box-shadow:
        0 12px 30px rgba(200,169,106,.25);

}


/* =====================================================
   SERVICES
===================================================== */

.b2b-services{

    padding:110px 0;

    background:#fff;

}


.b2b-services-grid{

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:25px;

}


.b2b-service-card{

    padding:35px 28px;

    border:1px solid #eee;

    border-radius:20px;

    transition:.35s ease;

}


.b2b-service-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);

}


.service-icon{

    margin-bottom:25px;

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

}


.b2b-service-card h3{

    margin-bottom:14px;

    color:#0D2C54;

    font-size:18px;

    font-weight:600;

}


.b2b-service-card p{

    color:#666;

    font-size:14px;

    line-height:1.8;

}


/* =====================================================
   NUMBERS
===================================================== */

.b2b-numbers{

    padding:100px 0;

    background:#F8F9FB;

}


.numbers-grid{

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:20px;

}


.number-item{

    padding:35px 20px;

    text-align:center;

    border-right:1px solid #ddd;

}


.number-item:last-child{

    border-right:none;

}


.number-item strong{

    display:block;

    margin-bottom:8px;

    color:var(--primary);

    font-size:42px;

    font-weight:600;

}


.number-item span{

    color:#666;

    font-size:14px;

}


/* =====================================================
   CONTACT & PAYMENT
===================================================== */

.b2b-contact-info{

    padding:110px 0;

    background:#F8F9FB;

}


.b2b-contact-grid{

    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:40px;

}


.b2b-contact-box,
.b2b-payment-box{

    padding:45px;

    background:#fff;

    border:1px solid #eee;

    border-radius:24px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.05);

}


.b2b-contact-label{

    display:block;

    margin-bottom:15px;

    color:var(--primary);

    font-size:13px;

    font-weight:600;

    letter-spacing:3px;

}


.b2b-contact-box h2,
.b2b-payment-box h2{

    margin-bottom:30px;

    color:#0D2C54;

    font-size:30px;

    line-height:1.3;

    font-weight:600;

}


.b2b-payment-box > p{

    margin-bottom:30px;

    color:#666;

    font-size:15px;

    line-height:1.8;

}


/* CONTACT DETAILS */

.contact-details{

    display:flex;

    flex-direction:column;

    gap:25px;

}


.contact-detail{

    display:flex;

    align-items:flex-start;

    gap:18px;

}


.contact-detail i{

    display:flex;

    align-items:center;

    justify-content:center;

    width:45px;

    height:45px;

    flex-shrink:0;

    background:#F8F4EA;

    border-radius:50%;

    color:var(--primary);

}


.contact-detail strong{

    display:block;

    margin-bottom:5px;

    color:#0D2C54;

    font-size:14px;

}


.contact-detail a,
.contact-detail span{

    color:#666;

    font-size:14px;

    line-height:1.6;

}


.contact-detail a{

    transition:.3s ease;

}


.contact-detail a:hover{

    color:var(--primary);

}


/* =====================================================
   PAYMENT METHODS
===================================================== */

.payment-methods{

    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:15px;

}


.payment-method{

    display:flex;

    align-items:center;

    justify-content:flex-start;

    gap:14px;

    padding:18px;

    background:#F8F9FB;

    border:1px solid #eee;

    border-radius:14px;

    color:#555;

    font-size:13px;

    font-weight:500;

}


.payment-method i{

    color:var(--primary);

    font-size:24px;

}


/* LAST PAYMENT METHOD */

.payment-method:last-child{

    grid-column:1 / -1;

    justify-content:center;

}


/* =====================================================
   PARTNERSHIP CTA
===================================================== */

.b2b-partner{

    position:relative;

    padding:130px 0;

    background-image:
        url("../images/b2b-partner.jpg");

    background-size:cover;

    background-position:center;

    text-align:center;

    overflow:hidden;

}


.b2b-partner .b2b-overlay{

    background:
        linear-gradient(
            rgba(8,22,45,.88),
            rgba(8,22,45,.88)
        );

}


.b2b-partner-content{

    position:relative;

    z-index:2;

    max-width:750px;

    margin:auto;

}


.b2b-partner-content > span{

    display:block;

    margin-bottom:15px;

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    letter-spacing:3px;

}


.b2b-partner-content h2{

    margin-bottom:20px;

    color:#fff;

    font-size:44px;

    line-height:1.25;

    font-weight:600;

}


.b2b-partner-content p{

    margin-bottom:35px;

    color:rgba(255,255,255,.82);

    font-size:16px;

    line-height:1.9;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1100px){

    .b2b-services-grid{

        grid-template-columns:
            repeat(2,1fr);

    }

}


@media(max-width:992px){

    .b2b-hero{

        min-height:750px;

    }


    .b2b-hero h1{

        font-size:48px;

    }


    .b2b-benefits-grid{

        grid-template-columns:
            repeat(2,1fr);

    }


    .numbers-grid{

        grid-template-columns:
            repeat(2,1fr);

    }


    .number-item{

        border-right:none;

        border-bottom:1px solid #ddd;

    }


    .advantage-workflow{

        grid-template-columns:
            repeat(2,1fr);

    }


    .advantage-workflow::before{

        display:none;

    }


    .b2b-contact-grid{

        grid-template-columns:
            1fr 1fr;

    }

}


@media(max-width:768px){

    .b2b-hero{

        min-height:720px;

    }


    .b2b-hero-content{

        padding-top:100px;

    }


    .b2b-hero h1{

        font-size:38px;

    }


    .b2b-hero p{

        font-size:15px;

    }


    .b2b-buttons{

        flex-direction:column;

    }


    .b2b-primary-btn,
    .b2b-secondary-btn{

        width:100%;

        max-width:300px;

    }


    .b2b-hero-highlights{

        flex-direction:column;

        gap:18px;

        align-items:flex-start;

        width:max-content;

        margin:40px auto 0;

    }


    .b2b-section-heading h2{

        font-size:34px;

    }


    .b2b-benefits-grid{

        grid-template-columns:1fr;

    }


    .b2b-services-grid{

        grid-template-columns:1fr;

    }


    .numbers-grid{

        grid-template-columns:1fr;

    }


    .b2b-partner-content h2{

        font-size:34px;

    }


    /* KONOZ ADVANTAGE */

    .konoz-advantage{

        padding:90px 0;

    }


    .advantage-workflow{

        grid-template-columns:1fr;

        gap:45px;

    }


    .advantage-workflow::before{

        display:block;

        top:30px;

        bottom:30px;

        left:50%;

        right:auto;

        width:1px;

        height:auto;

    }


    .advantage-content p{

        max-width:320px;

    }


    /* CONTACT */

    .b2b-contact-grid{

        grid-template-columns:1fr;

    }


    .b2b-contact-box,
    .b2b-payment-box{

        padding:32px 25px;

    }


    .b2b-contact-box h2,
    .b2b-payment-box h2{

        font-size:26px;

    }

}


@media(max-width:480px){

    .b2b-hero h1{

        font-size:32px;

    }


    .b2b-section-heading h2{

        font-size:29px;

    }


    .b2b-hero-highlights{

        width:100%;

    }


    .advantage-workflow{

        gap:40px;

    }


    .payment-methods{

        grid-template-columns:1fr;

    }


    .payment-method:last-child{

        grid-column:auto;

    }

}