/* =========================================================
   contact-us.css  —  Codderzone Contact Page Styles
   ========================================================= */

/* ─── Page Base ─── */
.contact-page {
    background:
        radial-gradient(circle at 14% 0%,   rgba(76,195,255,0.10)  0%, transparent 34%),
        radial-gradient(circle at 86% 100%,  rgba(173,212,12,0.09)  0%, transparent 34%),
        var(--dark);
}

.contact-smooth-wrapper {
    position: relative;
    overflow: hidden;
}

.contact-page .section-gap {
    padding: 110px 0;
    position: relative;
}

/* ─── Eyebrow ─── */
.contact-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: #89dcff;
    margin-bottom: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.contact-eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #4cc3ff, #add40c);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ─── Split Heading (shared) ─── */
.contact-page .split-heading {
    font-size: clamp(1.6rem, 3.8vw, 3.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.contact-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 150px 0 90px;
}

/* Dot-grid bg */
.contact-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(76,195,255,0.22) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at 38% 50%, #000 15%, transparent 65%);
    pointer-events: none;
}

/* Ambient orbs */
.contact-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.contact-hero-orb-1 {
    width: 360px; height: 360px;
    right: 4%; top: 8%;
    background: radial-gradient(circle, rgba(76,195,255,0.30) 0%, transparent 65%);
    filter: blur(55px);
    animation: czOrbA 9s ease-in-out infinite alternate;
}
.contact-hero-orb-2 {
    width: 280px; height: 280px;
    left: -60px; bottom: 2%;
    background: radial-gradient(circle, rgba(173,212,12,0.26) 0%, transparent 65%);
    filter: blur(44px);
    animation: czOrbB 11s ease-in-out infinite alternate;
}
@keyframes czOrbA {
    from { transform: translateY(0) translateX(0); }
    to   { transform: translateY(-32px) translateX(18px); }
}
@keyframes czOrbB {
    from { transform: translateY(0); }
    to   { transform: translateY(-28px); }
}

/* Diagonal stripe */
.contact-hero-stripe {
    position: absolute;
    right: 0; top: 0;
    width: 46%;
    height: 100%;
    background: linear-gradient(140deg,
        rgba(76,195,255,0.04) 0%,
        rgba(173,212,12,0.04) 100%);
    clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
    border-left: 1px solid rgba(76,195,255,0.1);
    pointer-events: none;
}

/* Corner accent */
.contact-hero-stripe::after {
    content: '';
    position: absolute;
    right: 0; top: 0;
    width: 1px; height: 180px;
    background: linear-gradient(180deg, #4cc3ff, transparent);
}

.contact-hero-content {
    position: relative;
    z-index: 3;
}

.contact-hero h1.split-heading {
    font-size: clamp(2.2rem, 5vw, 4rem);
    max-width: 700px;
    margin-bottom: 26px;
}

.contact-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.68);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 38px;
}

/* Tag pills */
.contact-hero-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.contact-hero-tags .ctag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 999px;
    border: 1px solid rgba(76,195,255,0.28);
    color: rgba(255,255,255,0.84);
    font-size: 13px;
    font-weight: 600;
    background: rgba(76,195,255,0.07);
    backdrop-filter: blur(4px);
    transition: border-color 0.25s, background 0.25s;
}
.contact-hero-tags .ctag:hover {
    border-color: rgba(173,212,12,0.55);
    background: rgba(173,212,12,0.08);
}
.contact-hero-tags .ctag i {
    color: #4cc3ff;
    font-size: 12px;
}

/* Hero right – info cards */
.contact-hero-right {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-left: 32px;
}

.ch-info-card {
    background: linear-gradient(150deg, rgba(14,24,42,0.92), rgba(8,12,22,0.96));
    border: 1px solid rgba(76,195,255,0.18);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    backdrop-filter: blur(10px);
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
    cursor: default;
    will-change: transform;
}
.ch-info-card:hover {
    transform: translateX(-6px);
    border-color: rgba(173,212,12,0.48);
    box-shadow: 0 14px 44px rgba(0,0,0,0.32);
}

.ch-info-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 19px;
    background: linear-gradient(135deg, rgba(76,195,255,0.14), rgba(173,212,12,0.10));
    color: #4cc3ff;
    border: 1px solid rgba(76,195,255,0.24);
}

.ch-info-card-text strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}
.ch-info-card-text span {
    color: rgba(255,255,255,0.56);
    font-size: 12px;
    line-height: 1.45;
}

/* ==========================================================
   FORM + INFO SECTION
   ========================================================== */
.contact-form-section {
    padding: 110px 0;
    position: relative;
}
.contact-form-section::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(76,195,255,0.28),
        rgba(173,212,12,0.22),
        transparent);
}

/* Info panel */
.contact-info-panel .split-heading {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    margin-bottom: 18px;
}
.contact-info-panel .ci-desc {
    color: rgba(255,255,255,0.60);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 420px;
}

/* Vertical divider info items */
.ci-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 42px;
}
.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    opacity: 0;
    transform: translateX(-24px);
}
.ci-item.sor-revealed,
.ci-item {
    opacity: 1;
    transform: translateX(0);
}
.ci-item-line {
    width: 2px;
    flex-shrink: 0;
    min-height: 50px;
    background: linear-gradient(180deg, #4cc3ff 0%, rgba(76,195,255,0.08) 100%);
    border-radius: 2px;
    margin-top: 3px;
}
.ci-item-body strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}
.ci-item-body span,
.ci-item-body span a {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.22s;
}
.ci-item-body span a:hover {
    color: #4cc3ff;
}

/* Social row */
.contact-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.contact-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.60);
    font-size: 16px;
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s;
}
.contact-social-btn img {
    width: 16px; height: 16px;
    filter: invert(1) opacity(0.6);
    transition: filter 0.25s;
}
.contact-social-btn:hover {
    border-color: #4cc3ff;
    color: #4cc3ff;
    background: rgba(76,195,255,0.10);
    transform: translateY(-3px);
}
.contact-social-btn:hover img {
    filter: invert(0.6) sepia(1) hue-rotate(180deg) saturate(5) brightness(1.2);
}

/* ─── Form Card ─── */
.contact-form-card {
    background: linear-gradient(162deg, rgba(12,20,34,0.97), rgba(7,11,21,0.99));
    border: 1px solid rgba(76,195,255,0.16);
    border-radius: 24px;
    padding: 46px 50px;
    position: relative;
    overflow: hidden;
}
/* Top gradient line accent */
.contact-form-card::before {
    content: '';
    position: absolute;
    top: -1px; left: 60px; right: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4cc3ff 40%, #add40c 70%, transparent);
}
/* Subtle scanlines for texture */
.contact-form-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent, transparent 3px,
        rgba(255,255,255,0.008) 3px, rgba(255,255,255,0.008) 4px
    );
    pointer-events: none;
    border-radius: 24px;
}

.cf-section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    color: rgba(255,255,255,0.36);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cf-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

/* Floating label group */
.cf-group {
    position: relative;
    margin-bottom: 26px;
}
.cf-group input,
.cf-group textarea,
.cf-group select {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 12px;
    padding: 20px 18px 8px;
    color: var(--white);
    font-size: 14px;
    font-family: var(--font-default);
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
}
.cf-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 24px;
    line-height: 1.6;
}
.cf-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 42px;
    cursor: pointer;
}
.cf-group select option {
    background: #0e0f11;
    color: var(--white);
}
.cf-group input:focus,
.cf-group textarea:focus,
.cf-group select:focus {
    border-color: rgba(76,195,255,0.65);
    background: rgba(76,195,255,0.05);
    box-shadow: 0 0 0 4px rgba(76,195,255,0.10);
}

/* Floating label */
.cf-group label {
    position: absolute;
    top: 15px; left: 18px;
    color: rgba(255,255,255,0.38);
    font-size: 14px;
    font-family: var(--font-default);
    pointer-events: none;
    transition: top 0.24s ease, font-size 0.24s ease, color 0.24s ease, letter-spacing 0.24s ease;
    z-index: 2;
    line-height: 1;
}

/* Shrink label on focus or when value exists */
.cf-group input:focus ~ label,
.cf-group input:not(:placeholder-shown) ~ label,
.cf-group textarea:focus ~ label,
.cf-group textarea:not(:placeholder-shown) ~ label,
.cf-group select:focus ~ label,
.cf-group.has-value label {
    top: 7px;
    font-size: 10px;
    letter-spacing: 0.07em;
    color: #4cc3ff;
}

/* Two-column row */
.cf-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Privacy note + submit row */
.cf-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 8px;
}
.cf-privacy-note {
    font-size: 12px;
    color: rgba(255,255,255,0.30);
    line-height: 1.55;
    max-width: 260px;
}

/* Submit button */
.cf-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #4cc3ff 0%, #add40c 100%);
    color: #080d14;
    font-family: var(--font-default);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    padding: 15px 34px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    white-space: nowrap;
}
.cf-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 42px rgba(76,195,255,0.38);
}
/* Shimmer sweep */
.cf-submit::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
    transform: skewX(-20deg);
    transition: left 0.52s ease;
}
.cf-submit:hover::after {
    left: 150%;
}
.cf-submit i {
    font-size: 15px;
    transition: transform 0.28s ease;
}
.cf-submit:hover i {
    transform: translateX(3px);
}

/* Success state */
.cf-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
}
.cf-success.visible {
    display: block;
}
.cf-success-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(76,195,255,0.15), rgba(173,212,12,0.12));
    border: 2px solid #add40c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #add40c;
    margin-bottom: 22px;
}
.cf-success h3 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.cf-success p {
    color: rgba(255,255,255,0.58);
    font-size: 14px;
    line-height: 1.7;
}

/* ==========================================================
   STATS TICKER
   ========================================================== */
.contact-stats-section {
    padding: 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.015);
}

.stats-ticker-wrap {
    display: flex;
    width: max-content;
    animation: czTickerScroll 28s linear infinite;
}
.stats-ticker-wrap:hover {
    animation-play-state: paused;
}

.stats-ticker-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 32px 60px;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.09);
}
.stats-ticker-item .st-num {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    background: linear-gradient(135deg, #4cc3ff 20%, #add40c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stats-ticker-item .st-label {
    color: rgba(255,255,255,0.50);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    max-width: 90px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
/* Separator dot */
.stats-ticker-item .st-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4cc3ff, #add40c);
    flex-shrink: 0;
    opacity: 0.5;
}

@keyframes czTickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================
   FAQ SECTION
   ========================================================== */
.contact-faq-section {
    padding: 110px 0;
    position: relative;
}
.contact-faq-section::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(76,195,255,0.2), transparent);
}

.faq-title-col .split-heading {
    font-size: clamp(1.6rem, 3.2vw, 2.5rem);
    margin-bottom: 16px;
}
.faq-title-col .faq-col-desc {
    color: rgba(255,255,255,0.54);
    font-size: 14px;
    line-height: 1.8;
    margin-top: 16px;
}
.faq-title-col .faq-col-desc a {
    color: #4cc3ff;
    text-decoration: none;
    transition: opacity 0.2s;
}
.faq-title-col .faq-col-desc a:hover {
    opacity: 0.75;
}

/* FAQ list */
.faq-list {
    display: flex;
    flex-direction: column;
}
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.09);
    overflow: hidden;
}
.faq-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.09);
}

.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 4px;
    cursor: pointer;
    user-select: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.2s;
    border-radius: 0;
    box-shadow: none;
}
.faq-trigger::after {
    content: none !important;
}
.faq-trigger:hover {
    background: rgba(76,195,255,0.04);
    border-radius: 8px;
}
.faq-trigger h4 {
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    flex: 1;
}

.faq-arrow {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    flex-shrink: 0;
    font-size: 13px;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.faq-item.open .faq-arrow {
    background: rgba(76,195,255,0.14);
    border-color: #4cc3ff;
    color: #4cc3ff;
}

.faq-body {
    overflow: hidden;
    height: 0;
}
.faq-body-inner {
    padding: 0 6px 22px;
    color: rgba(255,255,255,0.58);
    font-size: 14px;
    line-height: 1.85;
}

/* ==========================================================
   FOOTER OVERRIDES  (btn-animation icon always visible)
   ========================================================== */
.contact-page footer .btn-animation i {
    transform: scale(1);
}
.contact-page footer .btn-animation span {
    left: 0;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 991px) {
    .contact-hero {
        padding: 130px 0 70px;
    }
    .contact-hero-right {
        padding-left: 0;
        margin-top: 48px;
    }
    .contact-form-card {
        padding: 32px 28px;
    }
    .cf-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-hero h1.split-heading {
        font-size: clamp(1.9rem, 6vw, 2.6rem);
    }
}

@media (max-width: 767px) {
    .contact-form-card {
        padding: 26px 18px;
    }
    .contact-form-section,
    .contact-faq-section {
        padding: 72px 0;
    }
    .stats-ticker-item {
        padding: 24px 34px;
    }
    .cf-footer-row {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .cf-submit {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================
   LIGHT MODE OVERRIDES
   ========================================================== */
body.contact-page:not(.bg-dark) {
    background:
        radial-gradient(circle at 14% 0%, rgba(76,195,255,0.08) 0%, transparent 34%),
        radial-gradient(circle at 86% 100%, rgba(173,212,12,0.08) 0%, transparent 34%),
        #f3f7fb;
}

body.contact-page:not(.bg-dark) .split-heading,
body.contact-page:not(.bg-dark) h1,
body.contact-page:not(.bg-dark) h2,
body.contact-page:not(.bg-dark) h3,
body.contact-page:not(.bg-dark) h4,
body.contact-page:not(.bg-dark) h5 {
    color: #1a1a2e;
}

body.contact-page:not(.bg-dark) p,
body.contact-page:not(.bg-dark) li {
    color: #4a5568;
}

body.contact-page:not(.bg-dark) .contact-eyebrow {
    color: #0b84c6;
}

/* Hero */
body.contact-page:not(.bg-dark) .contact-hero-sub {
    color: #4f5f73;
}

body.contact-page:not(.bg-dark) .contact-hero-tags .ctag {
    border-color: rgba(76,195,255,0.34);
    color: #30465a;
    background: rgba(76,195,255,0.10);
}

body.contact-page:not(.bg-dark) .contact-hero-tags .ctag i {
    color: #0b84c6;
}

body.contact-page:not(.bg-dark) .contact-hero-grid {
    background-image: radial-gradient(rgba(76,195,255,0.14) 1px, transparent 1px);
}

/* Hero info cards */
body.contact-page:not(.bg-dark) .ch-info-card {
    background: #ffffff;
    border-color: #d9e4ef;
    box-shadow: 0 8px 24px rgba(12, 23, 39, 0.08);
}

body.contact-page:not(.bg-dark) .ch-info-card-text strong {
    color: #1f2d3d;
}

body.contact-page:not(.bg-dark) .ch-info-card-text span {
    color: #5b6b7d;
}

body.contact-page:not(.bg-dark) .ch-info-card-icon {
    background: linear-gradient(135deg, rgba(76,195,255,0.18), rgba(173,212,12,0.16));
    border-color: rgba(76,195,255,0.34);
    color: #0b84c6;
}

/* Info panel */
body.contact-page:not(.bg-dark) .contact-info-panel .ci-desc,
body.contact-page:not(.bg-dark) .ci-item-body span,
body.contact-page:not(.bg-dark) .ci-item-body span a {
    color: #5b6b7d;
}

body.contact-page:not(.bg-dark) .ci-item-body strong {
    color: #1f2d3d;
}

body.contact-page:not(.bg-dark) .contact-social-btn {
    border-color: #d2dce8;
    color: #5b6b7d;
    background: #fff;
}

/* Form card */
body.contact-page:not(.bg-dark) .contact-form-card {
    background: #ffffff;
    border-color: #d9e4ef;
    box-shadow: 0 14px 36px rgba(12, 23, 39, 0.10);
}

body.contact-page:not(.bg-dark) .contact-form-card::after {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(12, 23, 39, 0.02) 3px,
        rgba(12, 23, 39, 0.02) 4px
    );
}

body.contact-page:not(.bg-dark) .cf-section-label {
    color: rgba(31, 45, 61, 0.55);
}

body.contact-page:not(.bg-dark) .cf-section-label::after {
    background: rgba(12, 23, 39, 0.14);
}

body.contact-page:not(.bg-dark) .cf-group input,
body.contact-page:not(.bg-dark) .cf-group textarea,
body.contact-page:not(.bg-dark) .cf-group select {
    background: #f7faff;
    border-color: #d9e4ef;
    color: #1f2d3d;
}

body.contact-page:not(.bg-dark) .cf-group select option {
    background: #ffffff;
    color: #1f2d3d;
}

body.contact-page:not(.bg-dark) .cf-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(31,45,61,0.55)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 42px;
}

body.contact-page:not(.bg-dark) .cf-group label {
    color: rgba(31,45,61,0.55);
}

body.contact-page:not(.bg-dark) .cf-privacy-note {
    color: rgba(31,45,61,0.62);
}

body.contact-page:not(.bg-dark) .cf-success h3 {
    color: #1a1a2e;
}

body.contact-page:not(.bg-dark) .cf-success p {
    color: #5b6b7d;
}

/* Stats */
body.contact-page:not(.bg-dark) .contact-stats-section {
    border-top-color: #dbe6f0;
    border-bottom-color: #dbe6f0;
    background: rgba(76,195,255,0.06);
}

body.contact-page:not(.bg-dark) .stats-ticker-item {
    border-right-color: #dbe6f0;
}

body.contact-page:not(.bg-dark) .stats-ticker-item .st-label {
    color: #5b6b7d;
}

/* FAQ */
body.contact-page:not(.bg-dark) .faq-title-col .faq-col-desc {
    color: #5b6b7d;
}

body.contact-page:not(.bg-dark) .faq-item,
body.contact-page:not(.bg-dark) .faq-item:first-child {
    border-color: #dbe6f0;
}

body.contact-page:not(.bg-dark) .faq-trigger:hover {
    background: rgba(76,195,255,0.08);
}

body.contact-page:not(.bg-dark) .faq-trigger h4 {
    color: #1f2d3d;
}

body.contact-page:not(.bg-dark) .faq-arrow {
    border-color: #ccd9e6;
    color: #5b6b7d;
}

body.contact-page:not(.bg-dark) .faq-body-inner {
    color: #5b6b7d;
}
