/* ====================================================================
   CONTACT US V2
   Font: Space Grotesk (matches site)
   Palette: matches site — #0F172A / #f19e11 / #8B5CF6
   Design language: same as google-ads page but unique layout
   ==================================================================== */

/* ── Inherit site variables, add local overrides ── */
.cv2-wrap {
    --primary:         #f9452d;
    --primary-dark:    #d93a24;
    --accent:          #f19e11;

    --bg:              #071329;
    --bg-2:            #041b47;
    --bg-card:         #04245d;

    --border:          rgba(241, 158, 17, 0.14);
    --border-hi:       rgba(249, 69, 45, 0.24);

    --white:           #FFFFFF;
    --gray-200:        #EAF1FF;
    --gray-300:        #B7C6E6;
    --gray-500:        #7F93BD;

    --font:            'Space Grotesk', sans-serif;
    --ease:            cubic-bezier(.16,1,.3,1);
    --ease-spring:     cubic-bezier(.34,1.56,.64,1);

    font-family: var(--font);
    background:
    radial-gradient(circle at 8% 75%, #C97838 0%, transparent 28%),
    radial-gradient(circle at 72% 55%, #2E557F 0%, transparent 22%),
    linear-gradient(180deg, #04142E 0%, #020B1C 45%, #00050D 100%) !important;
    
    color: var(--gray-300);
    overflow-x: hidden;
}

.uf-form-wrapper .uf-input:focus,
.uf-form-wrapper .uf-textarea:focus,
.uf-form-wrapper .uf-select:focus {
    border-color: #000 !important;
    background: none !important;
    box-shadow: 0 0 0 3px var(--f-focus-g);
}

.cv2-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.cv2-hero {
    position: relative;
    padding: 130px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 15% 50%, rgba(200,145,42,.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 85% 20%, rgba(232,184,75,.05) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 60% 90%, rgba(200,145,42,.035) 0%, transparent 50%),
        transparent;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

/* Dot-grid texture masked to left region */
.cv2-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(200,145,42,.12) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 65% 80% at 20% 45%, black 0%, transparent 75%);
    pointer-events: none;
    z-index: 1;
}

/* Top-right concentric circles */
.cv2-hero::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(200,145,42,.07);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    box-shadow:
        0 0 0 60px rgba(200,145,42,.028),
        0 0 0 120px rgba(200,145,42,.018),
        0 0 0 180px rgba(200,145,42,.01);
}

/* BG elements */
.cv2-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.cv2-hbg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cv2-hbg-circle.c1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200,145,42,.06) 0%, transparent 60%);
    top: -300px;
    left: -200px;
    animation: cv2-float 16s ease-in-out infinite;
}

.cv2-hbg-circle.c2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,184,75,.045) 0%, transparent 60%);
    bottom: -80px;
    right: -60px;
    animation: cv2-float 20s ease-in-out infinite reverse;
}

/* Diagonal scanning lines */
.cv2-hbg-line {
    position: absolute;
    display: block;
    background: linear-gradient(90deg, transparent, rgba(200,145,42,.10), transparent);
    height: 1px;
    width: 80%;
    pointer-events: none;
}

.cv2-hbg-line.l1 {
    top: 28%;
    left: 8%;
    transform: rotate(-2deg);
    animation: cv2-line-fade 7s ease-in-out infinite;
}

.cv2-hbg-line.l2 {
    top: 52%;
    left: 5%;
    width: 55%;
    transform: rotate(-1.5deg);
    opacity: .5;
    animation: cv2-line-fade 9s ease-in-out 1.5s infinite;
}

.cv2-hbg-line.l3 {
    top: 74%;
    left: 18%;
    width: 65%;
    transform: rotate(-1deg);
    opacity: .28;
    animation: cv2-line-fade 11s ease-in-out 3s infinite;
}

@keyframes cv2-line-fade {
    0%, 100% { opacity: .4; }
    50%      { opacity: 1; }
}

@keyframes cv2-float {
    0%, 100% { transform: translate(0,0); }
    40%      { transform: translate(30px,-25px); }
    70%      { transform: translate(-15px,15px); }
}

/* Bottom edge blends into next section */
.cv2-hero-edge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,145,42,.4), transparent);
    pointer-events: none;
    z-index: 2;
}

/* Hero inner layout */
.cv2-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.cv2-hero-text {
    max-width: 700px;
}

/* Badge */
.cv2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(200,145,42,.1);
    border: 1px solid rgba(200,145,42,.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: .3px;
    margin-bottom: 30px;
    width: fit-content;
}

.cv2-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: cv2-pulse 2.2s ease-in-out infinite;
}

@keyframes cv2-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .4; transform: scale(1.3); }
}

/* Hero H1 */
.cv2-hero-h1 {
    font-family: var(--font);
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.025em;
    color: var(--white);
    margin-bottom: 24px;
}

.cv2-h1-plain { display: block; }

.cv2-h1-grad {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero desc */
.cv2-hero-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-300);
    max-width: 560px;
}

/* ════════════════════════════════════════════
   HERO ACCENT — Live Signal Panel
   ════════════════════════════════════════════ */
.cv2-hero-accent {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 220px;
    flex-shrink: 0;
}

/* Top strip: LIVE badge + clock */
.cv2-signal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(200,145,42,.08);
    border: 1px solid rgba(200,145,42,.22);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.cv2-signal-live {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: .9px;
}

.cv2-signal-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: cv2-live-pulse 1.8s ease-in-out infinite;
}

@keyframes cv2-live-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px #4ade80; }
    50%      { opacity: .35; box-shadow: 0 0 2px #4ade80; }
}

.cv2-signal-time {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,.3);
    font-variant-numeric: tabular-nums;
    letter-spacing: .5px;
}

/* Waveform */
.cv2-signal-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
    padding: 6px 14px 0;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;
    overflow: hidden;
}

.cv2-wave-bar {
    flex: 1;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(to top, var(--primary), var(--accent));
    opacity: .75;
    animation: cv2-wave-anim 1.4s ease-in-out infinite alternate;
    transform-origin: bottom;
}

.cv2-wave-bar:nth-child(1)  { animation-delay: 0s;   --h: 45%; }
.cv2-wave-bar:nth-child(2)  { animation-delay: .10s; --h: 80%; }
.cv2-wave-bar:nth-child(3)  { animation-delay: .18s; --h: 55%; }
.cv2-wave-bar:nth-child(4)  { animation-delay: .05s; --h: 95%; }
.cv2-wave-bar:nth-child(5)  { animation-delay: .25s; --h: 60%; }
.cv2-wave-bar:nth-child(6)  { animation-delay: .12s; --h: 40%; }
.cv2-wave-bar:nth-child(7)  { animation-delay: .32s; --h: 75%; }
.cv2-wave-bar:nth-child(8)  { animation-delay: .08s; --h: 50%; }
.cv2-wave-bar:nth-child(9)  { animation-delay: .22s; --h: 88%; }
.cv2-wave-bar:nth-child(10) { animation-delay: .15s; --h: 62%; }
.cv2-wave-bar:nth-child(11) { animation-delay: .28s; --h: 35%; }
.cv2-wave-bar:nth-child(12) { animation-delay: .04s; --h: 70%; }

@keyframes cv2-wave-anim {
    from { height: calc(var(--h) * .3); opacity: .35; }
    to   { height: var(--h); opacity: .9; }
}

/* Stat rows */
.cv2-signal-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cv2-stat-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;
    transition: background .25s ease, border-color .25s ease;
    cursor: default;
}

.cv2-stat-row:hover {
    background: rgba(200,145,42,.1);
    border-color: rgba(200,145,42,.28);
}

.cv2-stat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(200,145,42,.15);
    border: 1px solid rgba(200,145,42,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.cv2-stat-icon svg {
    width: 13px;
    height: 13px;
}

.cv2-stat-info {
    flex: 1;
    min-width: 0;
}

.cv2-stat-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: var(--gray-500);
    line-height: 1;
    margin-bottom: 3px;
}

.cv2-stat-value {
    font-size: 13px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.cv2-stat-bar-wrap {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,.07);
    border-radius: 3px;
    margin-top: 5px;
    overflow: hidden;
}

.cv2-stat-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    animation: cv2-bar-grow 1.8s var(--ease) forwards;
    width: 0;
}

@keyframes cv2-bar-grow {
    to { width: var(--bar-w); }
}

/* Phone pill */
.cv2-hero-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
    transition: all .25s var(--ease);
    backdrop-filter: blur(10px);
    width: 100%;
}

.cv2-hero-pill svg {
    color: var(--primary);
    flex-shrink: 0;
}

.cv2-hero-pill:hover {
    background: rgba(200,145,42,.12);
    border-color: var(--border-hi);
    transform: translateY(-3px);
}

/* ════════════════════════════════════════════
   MAP SECTION — map IS the background
   ════════════════════════════════════════════ */
.cv2-map-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: transparent;
    border-top: 1px solid rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.04);
}

/* Seamless top fade from hero */
.cv2-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(7,19,41,.7), transparent);
    z-index: 5;
    pointer-events: none;
}

/* Side vignettes to blend map edges */
.cv2-map-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(7,19,41,.5) 0%, transparent 15%, transparent 85%, rgba(4,36,93,.5) 100%);
    z-index: 3;
    pointer-events: none;
}

/* Map fills entire section */
.cv2-map-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cv2-map-bg iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: invert(1) hue-rotate(180deg) brightness(.8) saturate(.65) contrast(1.05);
}

.cv2-map-mock {
    width: 100%;
    height: 100%;
    background: transparent;
}

/* Gradient overlay */
.cv2-map-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(7,19,41,.18) 0%,
            rgba(10,27,66,.06) 30%,
            rgba(10,27,66,.28) 65%,
            rgba(4,36,93,.72) 100%),
        linear-gradient(to right,
            rgba(7,19,41,.48) 0%,
            transparent 40%,
            transparent 60%,
            rgba(4,36,93,.32) 100%);
    z-index: 1;
}

/* Pulsing location pin */
.cv2-pin-wrap {
    position: absolute;
    top: 38%;
    left: 52%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.cv2-pin {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(200,145,42,.6);
    color: var(--white);
    position: relative;
    z-index: 3;
}

.cv2-pin svg {
    transform: rotate(45deg);
    width: 20px;
    height: 20px;
}

.cv2-pin-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    border: 1.5px solid rgba(200,145,42,.5);
    animation: cv2-ripple 2.8s ease-out infinite;
}

.cv2-pin-ripple.r1 {
    width: 80px;
    height: 80px;
}

.cv2-pin-ripple.r2 {
    width: 130px;
    height: 130px;
    animation-delay: .9s;
    border-color: rgba(200,145,42,.25);
}

@keyframes cv2-ripple {
    0%   { transform: translate(-50%,-50%) scale(.6); opacity: 1; }
    100% { transform: translate(-50%,-50%) scale(1.6); opacity: 0; }
}

/* Info panel */
.cv2-map-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
    padding-bottom: 0;
}

.cv2-info-panel {
    background: rgba(11,17,28,.88);
    border: 1px solid rgba(200,145,42,.2);
    border-bottom: none;
    border-radius: 24px 24px 0 0;
    backdrop-filter: blur(28px);
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow:
        0 -8px 40px rgba(0,0,0,.35),
        0 -1px 0 rgba(200,145,42,.24),
        inset 0 1px 0 rgba(255,255,255,.05);
    position: relative;
}

.cv2-info-panel::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,145,42,.6), rgba(232,184,75,.5), transparent);
}

.cv2-info-panel-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .95rem;
    color: var(--gray-200);
    font-weight: 500;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.cv2-info-panel-head svg {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.cv2-info-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cv2-info-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    text-decoration: none;
    color: inherit;
}

.cv2-info-link {
    transition: all .25s var(--ease);
    padding: 10px;
    border-radius: 12px;
    margin: -10px;
}

.cv2-info-link:hover {
    background: rgba(200,145,42,.08);
    transform: translateX(4px);
}

.cv2-info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,145,42,.12);
    border: 1px solid rgba(200,145,42,.2);
    border-radius: 10px;
    color: var(--primary);
    flex-shrink: 0;
}

.cv2-info-icon svg {
    width: 17px;
    height: 17px;
}

.cv2-info-lbl {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.cv2-info-val {
    font-size: .9rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
}

.cv2-info-panel-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.cv2-soc {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--gray-300);
    text-decoration: none;
    transition: all .22s var(--ease);
}

.cv2-soc svg {
    width: 17px;
    height: 17px;
}

.cv2-soc:hover {
    background: rgba(200,145,42,.15);
    border-color: var(--border-hi);
    color: var(--white);
    transform: translateY(-3px);
}

/* ════════════════════════════════════════════
   FORM SECTION
   ════════════════════════════════════════════ */
.cv2-form-section {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 70% at 90% 30%, rgba(232,184,75,.055) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 10% 80%, rgba(200,145,42,.045) 0%, transparent 50%),
        transparent;
    border-top: 1px solid rgba(255,255,255,.04);
}

.cv2-form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200,145,42,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,145,42,.035) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.cv2-form-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(200,145,42,.38) 35%,
        rgba(232,184,75,.38) 65%,
        transparent 100%
    );
    z-index: 1;
}

.cv2-form-section .cv2-container {
    position: relative;
    z-index: 2;
}

.cv2-formbg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(100px);
}

.cv2-formbg-orb.o1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,184,75,.06) 0%, transparent 65%);
    top: -150px;
    right: -100px;
    animation: cv2-float 18s ease-in-out infinite;
}

.cv2-formbg-orb.o2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200,145,42,.05) 0%, transparent 65%);
    bottom: -100px;
    left: -80px;
    animation: cv2-float 22s ease-in-out infinite reverse;
}

.cv2-form-wrap {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.cv2-form-label-col {
    position: sticky;
    top: 100px;
}

.cv2-form-label-inner {
    position: relative;
}

.cv2-form-label-inner::before {
    content: '✉';
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 140px;
    line-height: 1;
    color: rgba(200,145,42,.05);
    pointer-events: none;
    user-select: none;
    font-family: var(--font);
}

.cv2-section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(200,145,42,.10);
    border: 1px solid rgba(200,145,42,.30);
    border-radius: 100px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.cv2-form-heading {
    font-family: var(--font);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--gray-200);
    margin-bottom: 18px;
}

.cv2-form-subdesc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 36px;
}

.cv2-form-deco {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 36px;
}

.cv2-deco-line {
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), transparent);
}

.cv2-deco-line.dl1 { width: 80px; }
.cv2-deco-line.dl2 { width: 50px; opacity: .6; }
.cv2-deco-line.dl3 { width: 30px; opacity: .35; }

.cv2-trust-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cv2-trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .92rem;
    font-weight: 500;
    color: var(--gray-300);
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all .25s var(--ease);
}

.cv2-trust-list li:hover {
    background: rgba(200,145,42,.07);
    border-color: rgba(200,145,42,.15);
    color: var(--gray-200);
}

.cv2-trust-list li svg {
    color: var(--primary);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background: rgba(200,145,42,.12);
    border-radius: 50%;
    padding: 3px;
    box-sizing: content-box;
}

/* Form card */
.cv2-form-card {
    background: rgba(4,36,93,.36);
    border: 1px solid rgba(200,145,42,.2);
    border-radius: 24px;
    padding: 40px;
    box-shadow:
        0 24px 60px rgba(0,0,0,.35),
        0 0 0 1px rgba(255,255,255,.04),
        inset 0 1px 0 rgba(255,255,255,.06);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(18px);
}

.cv2-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 100%;
    border-radius: 24px 24px 0 0;
    animation: cv2-shimmer 4s linear infinite;
}

.cv2-form-card::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200,145,42,.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

@keyframes cv2-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Native form */
.cv2-native {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cv2-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cv2-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.cv2-lbl {
    font-size: .8rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .6px;
}

.cv2-inp {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    font-family: var(--font);
    font-size: .92rem;
    font-weight: 500;
    color: var(--white);
    outline: none;
    transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
    -webkit-appearance: none;
    appearance: none;
}

.cv2-inp::placeholder {
    color: rgba(255,255,255,.2);
}

.cv2-inp:focus,
.cv2-field-group.is-focused .cv2-inp {
    background: rgba(200,145,42,.06);
    border-color: rgba(200,145,42,.5);
    box-shadow: 0 0 0 3px rgba(200,145,42,.1);
}

.cv2-ta {
    resize: vertical;
    min-height: 120px;
    line-height: 1.65;
}

.cv2-select-wrap { position: relative; }

.cv2-sel {
    cursor: pointer;
    padding-right: 44px;
}

.cv2-sel option {
    background: #1A2336;
    color: var(--white);
}

.cv2-sel-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gray-500);
    transition: transform .25s var(--ease);
}

.cv2-select-wrap.is-focused .cv2-sel-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.cv2-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 14px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(200,145,42,.35);
    margin-top: 4px;
}

.cv2-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
    transition: left .5s ease;
}

.cv2-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(200,145,42,.5);
}

.cv2-submit:hover::before {
    left: 100%;
}

.cv2-submit:active {
    transform: translateY(0);
}

.cv2-submit svg {
    transition: transform .3s var(--ease-spring);
}

.cv2-submit:hover svg {
    transform: translate(3px, -3px);
}

.cv2-submit.cv2-loading {
    opacity: .75;
    pointer-events: none;
}

.cv2-submit.cv2-loading svg {
    animation: cv2-spin .7s linear infinite;
}

@keyframes cv2-spin {
    to { transform: rotate(360deg); }
}

/* CF7 / UltraForm overrides */
.cv2-form-inject .wpcf7 input:not([type=submit]),
.cv2-form-inject .wpcf7 textarea,
.cv2-form-inject .wpcf7 select,
.cv2-form-inject input:not([type=submit]),
.cv2-form-inject textarea,
.cv2-form-inject select {
    width: 100% !important;
    padding: 13px 16px !important;
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    border-radius: 12px !important;
    font-family: var(--font) !important;
    font-size: .92rem !important;
    color: var(--white) !important;
    outline: none !important;
    transition: border-color .25s ease, box-shadow .25s ease !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
}

.cv2-form-inject input:focus,
.cv2-form-inject textarea:focus,
.cv2-form-inject select:focus {
    background: rgba(200,145,42,.06) !important;
    border-color: rgba(200,145,42,.5) !important;
    box-shadow: 0 0 0 3px rgba(200,145,42,.1) !important;
}

.cv2-form-inject input[type=submit],
.cv2-form-inject button[type=submit],
.cv2-form-inject .wpcf7-submit {
    width: 100% !important;
    padding: 16px 28px !important;
    background: linear-gradient(135deg, #f19e11 0%, #f19e11 100%) !important;
    border: none !important;
    border-radius: 14px !important;
    font-family: var(--font) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    cursor: pointer !important;
    box-shadow: 0 8px 28px rgba(200,145,42,.35) !important;
    transition: all .3s ease !important;
}

.cv2-form-inject input[type=submit]:hover,
.cv2-form-inject .wpcf7-submit:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 40px rgba(200,145,42,.5) !important;
}

.cv2-form-inject label {
    font-size: .8rem !important;
    font-weight: 700 !important;
    color: #64748B !important;
    text-transform: uppercase !important;
    letter-spacing: .6px !important;
    display: block !important;
    margin-bottom: 8px !important;
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .cv2-container { padding: 0 28px; }
    .cv2-form-wrap { grid-template-columns: 1fr; gap: 48px; }
    .cv2-form-label-col { position: static; }
    .cv2-hero { padding: 100px 0 80px; }
    .cv2-hero-inner { grid-template-columns: 1fr; }
    .cv2-hero-accent { display: none; }
    .cv2-info-panel-grid { grid-template-columns: 1fr 1fr; }
    .cv2-map-section { height: 520px; }
}

@media (max-width: 768px) {
    .cv2-container { padding: 0 20px; }
    .cv2-hero { padding: 80px 0 60px; }
    .cv2-hero-h1 { font-size: clamp(2.1rem, 8vw, 2.8rem); }
    .cv2-hero-desc { font-size: 1rem; }

    .cv2-map-section { height: auto; min-height: 480px; }
    .cv2-map-container { position: static; transform: none; padding: 0 20px; }
    .cv2-info-panel {
        border-radius: 0;
        border: none;
        border-top: 1px solid rgba(255,255,255,.08);
        backdrop-filter: none;
        background: rgba(10,27,66,.88);
    }
    .cv2-info-panel-grid { grid-template-columns: 1fr; gap: 16px; }
    .cv2-map-bg { height: 260px; position: relative; }
    .cv2-map-section { display: flex; flex-direction: column; }
    .cv2-pin-wrap { top: 35%; left: 50%; }

    .cv2-form-section { padding: 60px 0 80px; }
    .cv2-form-card { padding: 28px 22px; }
    .cv2-row-2 { grid-template-columns: 1fr; gap: 16px; }

    /* ── watermark ✉ hidden on mobile ── */
    .cv2-form-label-inner::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .cv2-hero-h1 { font-size: 2rem; }
    .cv2-form-heading { font-size: 1.7rem; }
    .cv2-info-panel { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}