/* =====================================================
   GLOBAL
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#07111f;
    color:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

/* =====================================================
   PAGE BANNER
===================================================== */

.page-banner{
    position:relative;
    padding:150px 0 90px;
    overflow:hidden;
    text-align:center;
    background:
    radial-gradient(circle at top right,
    rgba(0,212,255,0.12),
    transparent 35%),
    linear-gradient(135deg,#081120,#0d1b34,#12284d);
}

.page-banner::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:#00d4ff;
    filter:blur(220px);
    opacity:0.07;
    top:-180px;
    right:-150px;
}

.page-banner::after{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:#2563eb;
    filter:blur(220px);
    opacity:0.06;
    bottom:-180px;
    left:-150px;
}

.page-banner h1{
    font-size:54px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:18px;
    letter-spacing:-1.5px;
    position:relative;
    z-index:2;
}

.page-banner p{
    max-width:700px;
    margin:auto;
    font-size:16px;
    line-height:1.9;
    color:#cbd5e1;
    position:relative;
    z-index:2;
}

/* =====================================================
   SECTION
===================================================== */

section{
    padding:80px 0;
}

/* =====================================================
   CONTACT TOP
===================================================== */

.contact-top{
    text-align:center;
    max-width:820px;
    margin:auto;
    margin-bottom:55px;
}

.contact-label{
    display:inline-block;
    color:#00d4ff;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.contact-top h2{
    font-size:48px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-1.5px;
    margin-bottom:20px;
}

.contact-top p{
    color:#94a3b8;
    font-size:16px;
    line-height:1.9;
}

/* =====================================================
   CONTACT CARDS
===================================================== */

.contact-card{
    position:relative;
    background:rgba(10,18,35,0.88);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:26px;
    padding:32px 22px;
    text-align:center;
    height:100%;
    overflow:hidden;
    transition:0.35s ease;
    backdrop-filter:blur(18px);

    box-shadow:
    0 10px 35px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.contact-card::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:26px;
    padding:1px;
    background:linear-gradient(
        135deg,
        rgba(0,212,255,0.25),
        rgba(37,99,235,0.06),
        rgba(255,255,255,0.03)
    );

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;

    pointer-events:none;
}

.contact-card:hover{
    transform:translateY(-6px);
    box-shadow:
    0 18px 40px rgba(0,0,0,0.35);
}

.contact-card-icon{
    width:68px;
    height:68px;
    margin:auto;
    margin-bottom:22px;
    border-radius:20px;
    background:linear-gradient(135deg,#00d4ff,#2563eb);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;

    box-shadow:
    0 12px 28px rgba(0,212,255,0.22);
}

.contact-card h4{
    font-size:21px;
    font-weight:700;
    margin-bottom:10px;
}

.contact-card p{
    color:#94a3b8;
    line-height:1.8;
    margin:0;
    font-size:14px;
}

/* =====================================================
   CONTACT FORM WRAPPER
===================================================== */

.contact-form-wrapper{
    position:relative;
    margin-top:70px;
    padding:45px;
    border-radius:32px;
    overflow:hidden;

    background:rgba(10,18,35,0.90);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);

    box-shadow:
    0 12px 40px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.contact-form-wrapper::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:#00d4ff;
    filter:blur(220px);
    opacity:0.06;
    top:-180px;
    right:-180px;
}

.contact-form-header{
    text-align:center;
    margin-bottom:40px;
    position:relative;
    z-index:2;
}

.contact-form-header h3{
    font-size:40px;
    font-weight:800;
    line-height:1.1;
    margin:16px 0;
    letter-spacing:-1px;
}

.contact-form-header p{
    color:#94a3b8;
    font-size:15px;
    line-height:1.8;
}

/* =====================================================
   FORM
===================================================== */

.contact-form-wrapper form{
    position:relative;
    z-index:2;
}

.input-group-custom{
    position:relative;
    margin-bottom:22px;
}

.input-group-custom i{
    position:absolute;
    top:20px;
    left:18px;
    color:#94a3b8;
    font-size:14px;
    z-index:2;
}

.form-control{
    width:100%;
    height:56px;
    border:none;
    outline:none;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:16px;

    color:#fff;

    padding:16px 18px 16px 50px;

    font-size:14px;

    transition:0.35s ease;
}

.form-control:hover{
    border-color:rgba(0,212,255,0.18);
}

.form-control:focus{
    background:rgba(255,255,255,0.06);
    border-color:#00d4ff;
    color:#fff;

    box-shadow:
    0 0 0 4px rgba(0,212,255,0.07);
}

.form-control::placeholder{
    color:#7c8aa5;
}

textarea.form-control{
    height:150px;
    resize:none;
    padding-top:18px;
}

/* =====================================================
   BUTTON
===================================================== */

.btn-submit{
    border:none;
    outline:none;

    background:linear-gradient(135deg,#00d4ff,#2563eb);

    color:#fff;

    padding:15px 34px;

    border-radius:60px;

    font-size:14px;
    font-weight:700;

    transition:0.35s ease;

    box-shadow:
    0 12px 30px rgba(0,212,255,0.22);
}

.btn-submit:hover{
    transform:translateY(-4px);

    box-shadow:
    0 18px 38px rgba(0,212,255,0.30);
}

/* =====================================================
   TRACK TICKET BUTTON
===================================================== */

.track-ticket-btn{
    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:18px;
    
    margin-left: 10px;

    padding:14px 28px;

    border-radius:60px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    color:#fff;

    font-size:14px;

    font-weight:600;

    transition:0.3s ease;
}

.track-ticket-btn:hover{

    background:rgba(0,212,255,0.12);

    border-color:rgba(0,212,255,0.25);

    color:#fff;

    transform:translateY(-3px);
}

/* =====================================================
   CONTACT ALERT
===================================================== */

.contact-alert{
    margin-bottom:20px;

    padding:14px 18px;

    border-radius:14px;

    background:rgba(0,212,255,0.08);

    border:1px solid rgba(0,212,255,0.16);

    color:#fff;

    font-size:14px;

    text-align:center;
}

/* =====================================================
   CONTACT SUCCESS ALERT
===================================================== */

.contact-alert{
    margin-bottom:22px;
}

.ticket-success{
    background:rgba(0,212,255,0.08);

    border:1px solid rgba(0,212,255,0.18);

    border-radius:18px;

    padding:22px;

    text-align:center;
}

.ticket-success h4{
    font-size:18px;

    font-weight:700;

    color:#fff;

    margin-bottom:16px;
}

.ticket-info{
    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;
}

.ticket-info span{
    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    padding:10px 16px;

    border-radius:12px;

    color:#cbd5e1;

    font-size:14px;
}

.ticket-info strong{
    color:#fff;
}


/* =====================================================
   SOCIAL
===================================================== */

.social-wrapper{
    margin-top:60px;
    text-align:center;
}

.social-wrapper h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:22px;
}

.social-icons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.social-icons a{
    width:48px;
    height:48px;

    border-radius:16px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:17px;

    transition:0.35s ease;
}

.social-icons a:hover{
    background:linear-gradient(135deg,#00d4ff,#2563eb);

    transform:translateY(-4px);

    border-color:transparent;

    box-shadow:
    0 12px 28px rgba(0,212,255,0.25);
}

/* =====================================================
   MAP
===================================================== */

.map-box{
    margin-top:70px;
    height:420px;
    border-radius:28px;
    overflow:hidden;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 12px 40px rgba(0,0,0,0.30);
}

.map-box iframe{
    width:100%;
    height:100%;
    border:none;
}


/* =====================================================
   FAQ SECTION
===================================================== */

.faq-section{
    padding-top:70px;
}

.faq-title{
    margin-bottom:35px;
}

.faq-title h2{
    font-size:38px;
    font-weight:800;
    margin-bottom:12px;
}

.faq-title p{
    color:#94a3b8;
    font-size:15px;
}

/* =====================================================
   FAQ SEARCH
===================================================== */

.faq-search-box{
    max-width:650px;
    margin:0 auto 35px;
}

.faq-search-wrapper{
    position:relative;
    display:flex;
    align-items:center;
    background:rgba(10,18,35,0.88);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    overflow:hidden;
}

.faq-search-wrapper i{
    position:absolute;
    left:18px;
    color:#94a3b8;
    font-size:14px;
}

.faq-search-wrapper input{
    width:100%;
    height:56px;
    border:none;
    outline:none;
    background:transparent;
    color:#fff;
    padding:0 20px 0 46px;
    font-size:14px;
}

.faq-search-wrapper input::placeholder{
    color:#7c8aa5;
}

.faq-search-wrapper button{
    height:56px;
    border:none;
    background:linear-gradient(135deg,#00d4ff,#2563eb);
    color:#fff;
    padding:0 24px;
    font-size:14px;
    font-weight:600;
    transition:0.3s ease;
}

.faq-search-wrapper button:hover{
    opacity:0.9;
}

/* =====================================================
   FAQ ROW
===================================================== */

.faq-row{
    --bs-gutter-y:18px;
}

.faq-row .col-lg-6{
    display:flex;
}

/* =====================================================
   FAQ BOX
===================================================== */

.faq-box{
    width:100%;

    background:rgba(10,18,35,0.88);

    border:1px solid rgba(255,255,255,0.06);

    border-radius:20px;

    padding:22px;

    transition:0.3s ease;

    backdrop-filter:blur(12px);

    box-shadow:
    0 5px 18px rgba(0,0,0,0.18);

    min-height:180px;
}

.faq-box:hover{
    transform:translateY(-4px);

    border-color:rgba(0,212,255,0.16);

    box-shadow:
    0 10px 24px rgba(0,0,0,0.24);
}

.faq-box h5{
    font-size:20px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:10px;
    color:#fff;
}

.faq-box p{
    color:#94a3b8;
    font-size:14px;
    line-height:1.7;
    margin:0;
}

/* =====================================================
   NOT FOUND
===================================================== */

.faq-not-found{
    text-align:center;
    padding:25px;
    background:rgba(10,18,35,0.88);
    border-radius:18px;
    color:#94a3b8;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:991px){

    .page-banner{
        padding:140px 0 85px;
    }

    .page-banner h1{
        font-size:44px;
    }

    .contact-top h2{
        font-size:38px;
    }

    .contact-form-header h3{
        font-size:34px;
    }

    .contact-form-wrapper{
        padding:35px 28px;
    }

}

@media(max-width:767px){

    section{
        padding:65px 0;
    }

    .page-banner{
        padding:130px 0 75px;
    }

    .page-banner h1{
        font-size:34px;
    }

    .page-banner p{
        font-size:15px;
    }

    .contact-top{
        margin-bottom:45px;
    }

    .contact-top h2{
        font-size:30px;
    }

    .contact-top p{
        font-size:15px;
    }

    .contact-card{
        padding:28px 20px;
    }

    .contact-card-icon{
        width:60px;
        height:60px;
        font-size:20px;
    }

    .contact-card h4{
        font-size:18px;
    }

    .contact-form-wrapper{
        margin-top:55px;
        padding:28px 20px;
        border-radius:24px;
    }

    .contact-form-header{
        margin-bottom:30px;
    }

    .contact-form-header h3{
        font-size:28px;
    }

    .contact-form-header p{
        font-size:14px;
    }

    .form-control{
        height:52px;
        font-size:14px;
    }

    textarea.form-control{
        height:140px;
    }

    .btn-submit{
        width:100%;
    }
    
    .ticket-success{
        padding:18px;
    }

    .ticket-success h4{
        font-size:16px;
    }

    .ticket-info{
        flex-direction:column;
        gap:10px;
    }

    .social-wrapper{
        margin-top:50px;
    }

    .social-wrapper h4{
        font-size:22px;
    }

    .map-box{
        margin-top:55px;
        height:320px;
        border-radius:22px;
    }

    .faq-title h2{
        font-size:30px;
    }

    .faq-search-wrapper{
        flex-direction:column;
        border-radius:18px;
    }

    .faq-search-wrapper input{
        width:100%;
    }

    .faq-search-wrapper button{
        width:100%;
    }

    .faq-box{
        min-height:auto;
    }

}