/* =====================================================
   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;
}

/* =====================================================
   COUNTRY DROP-DOWN FIX & STYLING OVERHAUL
===================================================== */

.input-group-custom select.form-control {
    color: #ffffff !important;
    background-color: #111827 !important;
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    cursor: pointer;
    padding-left: 50px !important;
}

.input-group-custom select.form-control option {
    color: #ffffff !important;
    background-color: #111827 !important;
    padding: 12px;
}

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 ALERTS & 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;
}

/* =====================================================
   MODAL REDESIGN & POPUP STYLING (FIXED BUTTONS & VISIBILITY)
===================================================== */

.modal-content {
    background: #0b1326 !important;
    border: 1px solid rgba(0, 212, 255, 0.2) !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 212, 255, 0.15) !important;
    overflow: hidden;
    color: #fff !important;
}

.modal-header-custom {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(37, 99, 235, 0.15));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 20px 20px;
    text-align: center;
}

.modal-header-custom i {
    color: #00d4ff;
}

.modal-header-custom h4 {
    color: #fff;
    font-weight: 700;
    margin-top: 10px;
}

/* POPUP BODY TEXT VISIBILITY */
.modal-content .modal-body {
    color: #cbd5e1 !important;
}

.modal-content .modal-body p {
    color: #cbd5e1 !important;
}

.otp-input-box {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 14px !important;
    color: #00d4ff !important;
    font-size: 32px !important;
    letter-spacing: 12px !important;
    font-weight: 800 !important;
    height: 70px !important;
    padding-left: 22px !important;
    transition: 0.3s ease;
}

.otp-input-box:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #00d4ff !important;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.25) !important;
}

.otp-input-box::placeholder {
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 8px;
}

/* UNIFORM MODAL BUTTON STYLING */
.modal-footer .btn {
    height: 48px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.modal-footer .btn-primary {
    background: linear-gradient(135deg, #00d4ff, #2563eb);
    border: none;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.25);
}

.modal-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 212, 255, 0.35);
}

.modal-footer .btn-outline-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
}

.modal-footer .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* =====================================================
   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;
}

/* ==========================================================
   ULTRA-PREMIUM DARK FAQ (BOOTSTRAP OVERRIDE)
========================================================== */

.faq-section {
    padding: 100px 0;
    position: relative;
}

/* --- Section Subtitle Badge --- */
.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.faq-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d4ff;
}

/* --- Search Bar --- */
.faq-search-wrapper {
    max-width: 700px;
    margin: 0 auto 45px;
    position: relative;
}

.faq-search-input {
    width: 100%;
    background: #111827 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50px !important;
    padding: 18px 25px 18px 55px !important;
    color: #fff !important;
    font-size: 16px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.faq-search-input:focus {
    outline: none;
    border-color: #00d4ff !important;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.25) !important;
}

.faq-search-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #00d4ff;
    font-size: 18px;
    pointer-events: none;
}

/* --- Accordion Container & Cards --- */
.faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.custom-accordion .accordion-item {
    background: #111827 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    margin-bottom: 16px !important;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.custom-accordion .accordion-item:hover {
    border-color: rgba(0, 212, 255, 0.4) !important;
    transform: translateY(-2px);
}

/* --- Kill Bootstrap's Default Caret Arrow --- */
.custom-accordion .accordion-button::after {
    display: none !important;
}

/* --- Accordion Header Button --- */
.custom-accordion .accordion-button {
    background: transparent !important;
    color: #fff !important;
    font-size: 18px;
    font-weight: 600;
    padding: 22px 28px !important;
    box-shadow: none !important;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
}

/* Active / Open Button State */
.custom-accordion .accordion-button:not(.collapsed) {
    background: rgba(0, 212, 255, 0.05) !important;
    color: #00d4ff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* --- Left Question Icon --- */
.faq-q-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    font-size: 16px;
    flex-shrink: 0;
    transition: 0.3s;
}

.custom-accordion .accordion-button:not(.collapsed) .faq-q-icon {
    background: #00d4ff;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

/* --- Question Text Wrap Support --- */
.faq-question-text {
    word-break: break-word;
    line-height: 1.4;
}

/* --- Right Animated Toggle Badge (+ to ×) --- */
.faq-toggle-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 14px;
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.custom-accordion .accordion-button:not(.collapsed) .faq-toggle-icon {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    transform: rotate(135deg);
}

/* --- Accordion Body / Answer Text --- */
.custom-accordion .accordion-body {
    padding: 22px 28px 25px 83px !important;
    color: #cbd5e1 !important;
    font-size: 16px;
    line-height: 1.8;
    background: transparent !important;
}

/* --- Show More Button --- */
.btn-faq-toggle {
    background: #111827;
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    display: inline-block;
    margin-top: 25px;
    cursor: pointer;
}

.btn-faq-toggle:hover {
    background: #00d4ff;
    color: #000;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
    transform: translateY(-3px);
}

/* =====================================================
   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;
    }
    
    /* --- Mobile FAQ Optimizations --- */
    .custom-accordion .accordion-button {
        padding: 16px 18px !important;
        font-size: 15px;
        gap: 10px;
    }
    
    .faq-q-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .faq-toggle-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .custom-accordion .accordion-body {
        padding: 16px 18px 20px 18px !important;
        font-size: 14px;
    }
}