:root {
    --neon-blue: #00d4ff;
    --neon-cyan: #00ffea;
    --neon-purple: #7b2fff;
    --dark-bg: #020b18;
}

body {
    background: var(--dark-bg) !important;
    color: rgba(200, 230, 255, 0.88) !important;
}

.sec-bg-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
}

.sec-divider {
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%, rgba(0, 212, 255, 0.32) 25%,
            rgba(0, 255, 234, 0.48) 50%, rgba(0, 212, 255, 0.32) 75%,
            transparent 100%);
}

/* =============================================
           PAGE HEADER
        ============================================= */
#hero.page-header {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    background: var(--dark-bg) !important;
    overflow: hidden;
    padding: 0;
}

#hero.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.038) 2px, rgba(0, 0, 0, 0.038) 4px);
    z-index: 1;
    pointer-events: none;
    animation: scanlines 10s linear infinite;
}

@keyframes scanlines {
    from {
        background-position: 0 0
    }

    to {
        background-position: 0 100px
    }
}

#hero.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 85% 85% at 50% 50%, rgba(2, 11, 24, 0.18) 0%, rgba(2, 11, 24, 0.62) 100%);
    z-index: 1;
    pointer-events: none;
}

#hero.page-header .container {
    position: relative;
    z-index: 2;
    padding-top: 110px;
    padding-bottom: 60px;
}

/* corner decorators */
.hero-corner {
    position: absolute;
    width: 48px;
    height: 48px;
    z-index: 3;
    pointer-events: none;
    opacity: 0.65;
}

.hc-tl {
    top: 20px;
    left: 20px;
    border-top: 2px solid var(--neon-blue);
    border-left: 2px solid var(--neon-blue);
}

.hc-tr {
    top: 20px;
    right: 20px;
    border-top: 2px solid var(--neon-blue);
    border-right: 2px solid var(--neon-blue);
}

.hc-bl {
    bottom: 20px;
    left: 20px;
    border-bottom: 2px solid var(--neon-blue);
    border-left: 2px solid var(--neon-blue);
}

.hc-br {
    bottom: 20px;
    right: 20px;
    border-bottom: 2px solid var(--neon-blue);
    border-right: 2px solid var(--neon-blue);
}

.hero-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue) 30%, var(--neon-cyan) 50%, var(--neon-blue) 70%, transparent);
    z-index: 3;
    pointer-events: none;
    animation: scanLine 5s ease-in-out infinite;
}

@keyframes scanLine {
    0% {
        top: 10%;
        opacity: 0
    }

    8% {
        opacity: .55
    }

    92% {
        opacity: .25
    }

    100% {
        top: 90%;
        opacity: 0
    }
}

#hero.page-header h1 {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 900 !important;
    font-size: clamp(2rem, 5vw, 3.4rem) !important;
    color: #fff !important;
    text-shadow: 0 0 25px rgba(0, 212, 255, 0.75), 0 0 55px rgba(0, 212, 255, 0.30) !important;
    letter-spacing: 3px;
}

#hero.page-header p.lead {
    font-family: 'Rajdhani', sans-serif !important;
    color: rgba(185, 225, 255, 0.80) !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.5px;
}

.hero-title-line {
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
    margin: 10px auto 0;
    border-radius: 2px;
    animation: titleLine 1.2s .5s ease forwards;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.6);
}

@keyframes titleLine {
    to {
        width: 150px;
    }
}

/* =============================================
           CONTACT INFO CARDS
        ============================================= */
.contact-info {
    position: relative;
    background: #020e1a !important;
    overflow: hidden;
}

.contact-info .container {
    position: relative;
    z-index: 1;
}

.contact-card {
    background: rgba(0, 16, 34, 0.80) !important;
    border: 1px solid rgba(0, 212, 255, 0.13) !important;
    border-radius: 14px !important;
    backdrop-filter: blur(6px);
    transition: all 0.32s ease !important;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    opacity: 0;
    transition: opacity 0.32s;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    border-color: rgba(0, 212, 255, 0.50) !important;
    transform: translateY(-6px) !important;
    box-shadow: 0 0 28px rgba(0, 212, 255, 0.16) !important;
}

.contact-card h3 {
    font-family: 'Orbitron', sans-serif !important;
    color: #fff !important;
    font-size: 0.88rem !important;
    letter-spacing: 1.5px;
}

.contact-card p {
    font-family: 'Rajdhani', sans-serif !important;
    color: rgba(175, 220, 255, 0.72) !important;
    font-size: 1rem;
}

.contact-card .text-primary {
    color: var(--neon-blue) !important;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
    transition: filter 0.3s;
}

.contact-card:hover .text-primary {
    filter: drop-shadow(0 0 18px rgba(0, 212, 255, 1));
}

/* =============================================
           CONTACT FORM SECTION
        ============================================= */
.contact-form-section {
    position: relative;
    background: #020b18 !important;
    overflow: hidden;
}

.contact-form-section .container,
.contact-form-section .cointainer {
    position: relative;
    z-index: 1;
}

.contact-form-section h1 {
    font-family: 'Orbitron', sans-serif !important;
    color: #fff !important;
    font-size: clamp(1.1rem, 2.8vw, 1.7rem) !important;
    text-shadow: 0 0 16px rgba(0, 212, 255, 0.4);
    letter-spacing: 1px;
}

.contact-form-section hr {
    border-color: rgba(0, 212, 255, 0.20) !important;
}

/* inputs */
.contact-form-section input,
.contact-form-section select,
.contact-form-section textarea {
    background: rgba(0, 16, 34, 0.82) !important;
    border: 1px solid rgba(0, 212, 255, 0.20) !important;
    color: rgba(200, 230, 255, 0.90) !important;
    border-radius: 8px !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 1rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form-section input:focus,
.contact-form-section select:focus,
.contact-form-section textarea:focus {
    background: rgba(0, 20, 44, 0.92) !important;
    border-color: rgba(0, 212, 255, 0.55) !important;
    box-shadow: 0 0 14px rgba(0, 212, 255, 0.20) !important;
    color: #fff !important;
    outline: none !important;
}

.contact-form-section label {
    font-family: 'Rajdhani', sans-serif !important;
    color: rgba(180, 220, 255, 0.78) !important;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.contact-form-section select option {
    background: #020e1a !important;
    color: rgba(200, 230, 255, 0.9) !important;
}

.contact-form-section .btn-outline-primary {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    border: 2px solid var(--neon-blue) !important;
    color: var(--neon-blue) !important;
    background: transparent !important;
    padding: 12px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.15) !important;
}

.contact-form-section .btn-outline-primary:hover {
    background: var(--neon-blue) !important;
    color: #000 !important;
    box-shadow: 0 0 28px rgba(0, 212, 255, 0.65) !important;
    transform: translateY(-2px) !important;
}

/* =============================================
           MAP SECTION
        ============================================= */
.map-section {
    position: relative;
    border-top: 1px solid rgba(0, 212, 255, 0.15);
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.map-wrapper iframe {
    filter: invert(90%) hue-rotate(180deg) saturate(0.7) brightness(0.85);
    display: block;
}

/* =============================================
           FAQ SECTION
        ============================================= */
.faq-section {
    position: relative;
    background: #020e1a !important;
    overflow: hidden;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-section h2 {
    font-family: 'Orbitron', sans-serif !important;
    color: #fff !important;
    font-size: clamp(1.4rem, 3vw, 2.1rem) !important;
    text-shadow: 0 0 18px rgba(0, 212, 255, 0.45);
}

.faq-section p.lead {
    font-family: 'Rajdhani', sans-serif !important;
    color: rgba(180, 220, 255, 0.72) !important;
}

/* accordion */
.accordion-item {
    background: rgba(0, 16, 34, 0.78) !important;
    border: 1px solid rgba(0, 212, 255, 0.13) !important;
    border-radius: 10px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-button {
    background: rgba(0, 18, 38, 0.85) !important;
    color: rgba(200, 230, 255, 0.88) !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    border: none !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--neon-blue) !important;
    background: rgba(0, 25, 52, 0.92) !important;
    box-shadow: inset 0 -1px 0 rgba(0, 212, 255, 0.15) !important;
}

.accordion-button::after {
    filter: invert(1) sepia(1) saturate(2) hue-rotate(170deg) brightness(1.4);
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-collapse {
    border-top: 1px solid rgba(0, 212, 255, 0.10) !important;
}

.accordion-body {
    background: rgba(0, 14, 28, 0.80) !important;
    color: rgba(175, 220, 255, 0.72) !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 1rem;
    line-height: 1.75;
}

/* =============================================
           FOOTER
        ============================================= */
.footer {
    position: relative;
    background: #010810 !important;
    border-top: 1px solid rgba(0, 212, 255, 0.18) !important;
    overflow: hidden;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer h4 {
    color: #fff !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 0.95rem !important;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.35);
}

.footer h5 {
    color: var(--neon-blue) !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 0.72rem !important;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer p {
    color: rgba(150, 200, 230, 0.60) !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 0.95rem;
}

.footer a {
    color: rgba(150, 200, 230, 0.60) !important;
    text-decoration: none !important;
    transition: color 0.25s, text-shadow 0.25s;
}

.footer a:hover {
    color: var(--neon-cyan) !important;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.5);
}

.footer hr {
    border-color: rgba(0, 212, 255, 0.13) !important;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.45rem;
    font-family: 'Rajdhani', sans-serif;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 1rem;
}

.footer .footer-logo {
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.35));
}

.back-to-top {
    background: rgba(0, 212, 255, 0.10) !important;
    border: 1px solid rgba(0, 212, 255, 0.38) !important;
    color: var(--neon-blue) !important;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.18);
    transition: all 0.3s ease !important;
}

.back-to-top:hover {
    background: var(--neon-blue) !important;
    color: #000 !important;
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.6) !important;
}