/* Contact page styles */

/* Contact page hero */
.page-contact .contact-hero {
    position: relative;
    overflow: hidden;
    padding: 95px 0 84px;
    background:
        radial-gradient(circle at 18% 15%, rgba(6, 187, 204, 0.25), transparent 34%),
        radial-gradient(circle at 86% 12%, rgba(107, 13, 236, 0.22), transparent 36%),
        linear-gradient(135deg, #121d3a 0%, #1b2f60 45%, #0d6784 100%);
}

.page-contact .contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%);
    pointer-events: none;
}

.page-contact .contact-hero-bg-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-contact .contact-hero-icon {
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 16px 34px rgba(7, 13, 28, 0.2);
    animation: contactFloat 8.5s ease-in-out infinite;
}

.page-contact .contact-hero-icon-one { top: 22%; left: 11%; animation-delay: 0s; }
.page-contact .contact-hero-icon-two { top: 28%; right: 16%; animation-delay: 1.1s; }
.page-contact .contact-hero-icon-three { bottom: 22%; right: 44%; animation-delay: 2.1s; }

.page-contact .contact-hero .container {
    position: relative;
    z-index: 1;
}

.page-contact .contact-hero-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 30px 28px;
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.09));
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 28px 80px rgba(8, 14, 30, 0.3);
    backdrop-filter: blur(12px);
}

.page-contact .contact-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e3fbff;
    background: rgba(6, 187, 204, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.page-contact .contact-hero-subtitle {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
    line-height: 1.8;
}

.page-contact .contact-section-note {
    max-width: 760px;
    color: #65728b;
    line-height: 1.8;
}

.page-contact .contact-info-panel,
.page-contact .contact-map-card,
.page-contact .contact-form-card {
    border-radius: 24px;
    border: 1px solid rgba(6, 187, 204, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.page-contact .contact-info-panel:hover,
.page-contact .contact-map-card:hover,
.page-contact .contact-form-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 187, 204, 0.34);
    box-shadow: 0 30px 75px rgba(15, 23, 42, 0.14);
}

.page-contact .contact-info-sub {
    color: #60708a;
    line-height: 1.8;
}

.page-contact .contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(6, 187, 204, 0.05);
    border: 1px solid rgba(6, 187, 204, 0.1);
    margin-bottom: 12px;
}

.page-contact .contact-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #06bbcc 0%, #0ca7f1 100%);
    box-shadow: 0 12px 24px rgba(12, 167, 241, 0.2);
}

.page-contact .contact-info-item h6 {
    margin: 0 0 4px;
    color: #132450;
    font-weight: 800;
}

.page-contact .contact-info-item p {
    margin: 0;
    color: #60708a;
}

.page-contact .contact-form-card .form-control {
    border-radius: 14px;
    border-color: rgba(6, 187, 204, 0.18);
    box-shadow: none;
}

.page-contact .contact-form-card .form-control:focus {
    border-color: rgba(6, 187, 204, 0.48);
    box-shadow: 0 0 0 0.2rem rgba(6, 187, 204, 0.1);
}

.page-contact .contact-form-card .btn {
    border-radius: 14px;
}

.page-contact .contact-form-note {
    margin-top: 14px;
    color: #5e6c86;
    font-size: 0.92rem;
}

/* Contact neon split layout (map removed) */
.page-contact .contact-neon-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(6, 187, 204, 0.34);
    box-shadow:
        0 0 0 1px rgba(6, 187, 204, 0.18),
        0 28px 80px rgba(5, 18, 40, 0.45);
    background: linear-gradient(120deg, #041126 0%, #081f3b 45%, #0b6f86 100%);
    animation: contactNeonPulse 3.2s ease-in-out infinite;
}

.page-contact .contact-neon-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: skewX(-28deg);
    background: linear-gradient(180deg, rgba(6, 187, 204, 0.1), rgba(6, 187, 204, 0.85), rgba(6, 187, 204, 0.15));
    box-shadow: 0 0 20px rgba(6, 187, 204, 0.45);
    pointer-events: none;
}

.page-contact .contact-neon-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(6, 187, 204, 0.4);
    box-shadow:
        0 0 20px rgba(6, 187, 204, 0.3),
        inset 0 0 20px rgba(6, 187, 204, 0.18);
    opacity: 0.65;
    pointer-events: none;
    animation: contactNeonOutline 2.8s ease-in-out infinite;
}

.page-contact .contact-neon-left,
.page-contact .contact-neon-right {
    position: relative;
    z-index: 1;
    padding: 34px 30px;
}

.page-contact .contact-neon-left h4,
.page-contact .contact-neon-right h4,
.page-contact .contact-neon-left h6,
.page-contact .contact-neon-left p,
.page-contact .contact-neon-right label {
    color: #eaf8ff !important;
}

.page-contact .contact-neon-left h4,
.page-contact .contact-neon-right h4 {
    font-weight: 900;
    letter-spacing: 0.3px;
}

.page-contact .contact-neon-left .contact-info-sub {
    color: rgba(214, 239, 255, 0.8) !important;
}

.page-contact .contact-neon-left .contact-info-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(6, 187, 204, 0.24);
}

.page-contact .contact-neon-left .contact-info-item p {
    color: rgba(214, 239, 255, 0.88);
}

.page-contact .contact-neon-left .contact-info-icon {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22), 0 12px 28px rgba(6, 187, 204, 0.35);
}

.page-contact .contact-neon-right .form-control {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(6, 187, 204, 0.24) !important;
    color: #f3fbff !important;
}

.page-contact .contact-neon-right .form-control::placeholder {
    color: rgba(218, 237, 250, 0.62);
}

.page-contact .contact-neon-right .form-control:focus {
    border-color: rgba(6, 187, 204, 0.58) !important;
    box-shadow: 0 0 0 0.2rem rgba(6, 187, 204, 0.14) !important;
}

.page-contact .contact-neon-right .btn {
    background: linear-gradient(90deg, #06bbcc 0%, #0ca7f1 100%);
    border: none;
    box-shadow: 0 12px 30px rgba(6, 187, 204, 0.35);
}

.page-contact .contact-neon-right .btn:hover,
.page-contact .contact-neon-right .btn:focus {
    filter: saturate(1.1);
    transform: translateY(-1px);
}

.page-contact .contact-neon-right #contactStatus {
    color: #88efff !important;
}

.page-contact .contact-neon-right .contact-form-note {
    color: rgba(214, 239, 255, 0.8);
}

@media (max-width: 991.98px) {
    .page-contact .contact-neon-wrap {
        grid-template-columns: 1fr;
    }
    .page-contact .contact-neon-wrap::before {
        display: none;
    }
}

@keyframes contactNeonPulse {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(6, 187, 204, 0.18),
            0 28px 80px rgba(5, 18, 40, 0.45);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(6, 187, 204, 0.34),
            0 34px 90px rgba(5, 18, 40, 0.55);
    }
}

@keyframes contactNeonOutline {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.9; }
}

@keyframes contactFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

