
/* Force ChatTalk landing page to break out of normal theme page containers */
body:has(#ct-fullscreen-root) {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    background: #000 !important;
}

body:has(#ct-fullscreen-root) header,
body:has(#ct-fullscreen-root) footer,
body:has(#ct-fullscreen-root) .site-header,
body:has(#ct-fullscreen-root) .site-footer,
body:has(#ct-fullscreen-root) .entry-header,
body:has(#ct-fullscreen-root) .page-header,
body:has(#ct-fullscreen-root) h1.entry-title,
body:has(#ct-fullscreen-root) .wp-block-post-title {
    display: none !important;
}

body:has(#ct-fullscreen-root) .site,
body:has(#ct-fullscreen-root) .site-content,
body:has(#ct-fullscreen-root) .content-area,
body:has(#ct-fullscreen-root) .entry-content,
body:has(#ct-fullscreen-root) main,
body:has(#ct-fullscreen-root) article,
body:has(#ct-fullscreen-root) .wp-site-blocks {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

#ct-fullscreen-root {
    position: relative !important;
    width: 100vw !important;
    min-height: 100vh !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    margin-top: 0 !important;
    padding: 0 !important;
    background: #000 !important;
}

.ct-fullscreen-landing {
    position: relative !important;
    min-height: 100vh !important;
    width: 100vw !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding: 48px 6vw !important;
    box-sizing: border-box !important;
    background-color: #000 !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    font-family: Arial, Helvetica, sans-serif !important;
    overflow: hidden !important;
}

.ct-fullscreen-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background:
        radial-gradient(circle at 28% 40%, rgba(0, 229, 255, .15), transparent 34%),
        linear-gradient(90deg, rgba(0,0,0,.25), rgba(0,0,0,.82)) !important;
}

.ct-full-card {
    position: relative !important;
    z-index: 2 !important;
    width: min(470px, 92vw) !important;
    padding: 36px !important;
    border-radius: 28px !important;
    background: rgba(3, 8, 18, .78) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    color: #fff !important;
    box-shadow: 0 30px 90px rgba(0,0,0,.62), 0 0 32px rgba(0,229,255,.18) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
}

.ct-full-pill {
    display: inline-block !important;
    margin-bottom: 16px !important;
    padding: 8px 14px !important;
    border-radius: 999px !important;
    color: #9df7ff !important;
    border: 1px solid rgba(0,229,255,.32) !important;
    background: rgba(0,229,255,.12) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: .14em !important;
}

.ct-full-card h1 {
    margin: 0 0 14px 0 !important;
    color: #fff !important;
    font-size: clamp(42px, 5vw, 66px) !important;
    line-height: .98 !important;
    letter-spacing: -.055em !important;
    font-weight: 800 !important;
}

.ct-full-card p {
    margin: 0 0 18px 0 !important;
    color: rgba(255,255,255,.88) !important;
    font-size: 17px !important;
    line-height: 1.52 !important;
    font-weight: 600 !important;
}

.ct-full-highlight {
    margin-bottom: 22px !important;
    color: #58f6ff !important;
    font-size: 19px !important;
    line-height: 1.35 !important;
    font-weight: 900 !important;
}

.ct-full-form {
    display: grid !important;
    gap: 12px !important;
}

.ct-full-form input,
.ct-full-form textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    border-radius: 15px !important;
    padding: 15px 16px !important;
    background: rgba(255,255,255,.11) !important;
    color: #fff !important;
    font-size: 16px !important;
    outline: none !important;
}

.ct-full-form input::placeholder,
.ct-full-form textarea::placeholder {
    color: rgba(255,255,255,.70) !important;
}

.ct-full-form textarea {
    min-height: 110px !important;
    resize: vertical !important;
}

.ct-full-form button {
    width: 100% !important;
    padding: 15px 18px !important;
    border: 0 !important;
    border-radius: 15px !important;
    cursor: pointer !important;
    background: linear-gradient(90deg, #00e5ff, #ffffff) !important;
    color: #071018 !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    box-shadow: 0 12px 30px rgba(0,229,255,.28) !important;
}

.ct-full-footer {
    margin-top: 18px !important;
    color: rgba(255,255,255,.62) !important;
    text-align: center !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
}

.ct-full-alert {
    margin: 0 0 15px 0 !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
}

.ct-full-success {
    color: #d9ffef !important;
    background: rgba(25,180,115,.18) !important;
    border: 1px solid rgba(25,180,115,.45) !important;
}

.ct-full-error {
    color: #ffe1e1 !important;
    background: rgba(255,80,80,.18) !important;
    border: 1px solid rgba(255,80,80,.45) !important;
}

@media (max-width: 800px) {
    .ct-fullscreen-landing {
        justify-content: center !important;
        padding: 26px 18px !important;
        background-position: center top !important;
    }

    .ct-fullscreen-overlay {
        background: rgba(0,0,0,.72) !important;
    }

    .ct-full-card {
        padding: 26px !important;
    }
}


/* Large logo positioning on left side */
.ct-fullscreen-landing::before{
    content:"";
    position:absolute;
    left:4vw;
    top:50%;
    transform:translateY(-50%);
    width:min(48vw,780px);
    height:min(48vw,780px);
    background-image:inherit;
    background-repeat:no-repeat;
    background-position:center center;
    background-size:contain;
    opacity:0.95;
    z-index:1;
    pointer-events:none;
}

/* keep contact box above logo */
.ct-full-card{
    margin-left:auto !important;
    margin-right:2vw !important;
}

@media (max-width: 900px){
    .ct-fullscreen-landing{
        justify-content:center !important;
    }

    .ct-fullscreen-landing::before{
        width:80vw;
        height:80vw;
        left:50%;
        top:24%;
        transform:translateX(-50%);
        opacity:0.28;
    }

    .ct-full-card{
        margin:0 auto !important;
    }
}
