.vxc-contact-wrapper {
    position: relative;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible !important; /* CRITICAL: Ensure icons aren't clipped on frontend */
    background: transparent;
    z-index: 1;
}

/* External Glows */
.vxc-bg-glows {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    max-width: 1200px; max-height: 800px;
    pointer-events: none;
    z-index: 1; /* Below card, above background */
}

.vxc-glow-1, .vxc-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.8; /* Subtle base opacity */
}

.vxc-glow-1 {
    top: -10%; left: 10%;
    background: rgba(168, 85, 247, 0.15); /* Soft Purple */
    animation: vxc-pulse-glow 6s infinite alternate ease-in-out;
}

.vxc-glow-2 {
    bottom: -10%; right: 10%;
    background: rgba(59, 130, 246, 0.15); /* Soft Blue */
    animation: vxc-pulse-glow 8s infinite alternate-reverse ease-in-out;
}

@keyframes vxc-pulse-glow {
    0% { opacity: 0.6; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Subtle Dotted Patterns */
.vxc-dot-pattern {
    position: absolute;
    width: 200px; height: 200px;
    background-image: radial-gradient(rgba(0,0,0,0.08) 2px, transparent 2px);
    background-size: 24px 24px;
    z-index: 0;
    opacity: 0.5;
    transition: opacity 3s ease-in-out;
}
.vxc-animate:hover .vxc-dot-pattern { opacity: 0.8; } /* Subtle fade in on section hover */
.vxc-dot-pattern.top-right { top: 40px; right: 15%; }
.vxc-dot-pattern.bottom-left { bottom: 40px; left: 15%; }

/* Connector Line */
.vxc-connector-line {
    position: absolute;
    top: 50%; right: 10%;
    transform: translateY(-50%);
    width: 300px; height: 400px;
    z-index: 2; /* Place above glows but below icons */
    opacity: 0.6;
    pointer-events: none;
}

/* Subtle Floating Icons - CRITICAL FIXES FOR FRONTEND VISIBILITY */
.vxc-floating-icon {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    display: flex !important; /* Force display flex */
    justify-content: center; 
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    color: #2563EB; /* Vendex Blue */
    z-index: 20 !important; /* CRITICAL: High z-index to stay visible above everything */
    opacity: 1 !important; /* Ensure visible */
    visibility: visible !important; /* Ensure visible */
    pointer-events: none; /* Let clicks pass through */
    animation: vxc-float-subtle 4s ease-in-out infinite alternate; /* Gentle float */
}

/* SVG styling inside floating icon */
.vxc-floating-icon svg {
    color: #2563EB; /* Match icon color */
    fill: none; /* For stroke-based SVGs */
}

.vxc-floating-icon.float-1 { 
    top: 32%; 
    right: -90px; /* Position relative to wrapper, adjust if needed for your specific layout width */
    width: 64px; 
    height: 64px; 
    animation-delay: 0s; 
}
.vxc-floating-icon.float-2 { 
    bottom: 20%; 
    right: -40px; 
    width: 48px; 
    height: 48px; 
    animation-delay: -2s; 
}

@keyframes vxc-float-subtle {
    0% { transform: translateY(-4px); }
    100% { transform: translateY(4px); } 
}

/* Main Clean Card */
.vxc-main-card {
    position: relative;
    z-index: 10; /* Above background elements, below floating icons */
    background: #fff;
    border-radius: 24px;
    padding: 32px 40px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08), 0 0 1px rgba(0,0,0,0.05);
    max-width: 650px;
    width: 100%;
    margin: 0 auto; /* Ensure centered */
}

/* Contact Rows */
.vxc-contact-row {
    display: flex;
    align-items: center;
    padding: 24px 0;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease-out; /* Smooth transition */
    border-radius: 12px;
}

.vxc-contact-row:hover {
    background: #f8fafc; /* Slight highlight */
    padding-left: 16px;
    padding-right: 16px;
    margin-left: -16px;
    margin-right: -16px;
}

.vxc-divider {
    height: 1px;
    background: #f3f4f6;
    width: 100%;
}

.vxc-row-icon {
    width: 52px; height: 52px;
    background: #eff6ff; /* Soft blue background */
    color: #3b82f6;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    margin-right: 24px;
    font-size: 20px;
    transition: transform 0.25s ease-out;
}
.vxc-contact-row:hover .vxc-row-icon { transform: scale(1.05); } /* Subtle scale */
.vxc-row-icon svg { width: 24px; height: 24px; fill: currentColor; }

.vxc-row-content { flex: 1; }
.vxc-row-title { margin: 0 0 4px; font-size: 18px; font-weight: 700; color: #111827; }
.vxc-row-desc { margin: 0; font-size: 15px; color: #6b7280; }

.vxc-row-arrow { color: #d1d5db; transition: all 0.25s ease-out; }
.vxc-contact-row:hover .vxc-row-arrow { transform: translateX(4px); color: #3b82f6; } /* Subtle slide right */

/* Entrance Animations */
.vxc-animate .vxc-main-card { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; 
}
.vxc-animate.is-visible .vxc-main-card { 
    opacity: 1; 
    transform: translateY(0); 
}

/* Ensure Elementor container doesn't clip */
.elementor-widget-vendex_contact_card_65fb12ce {
    overflow: visible !important;
}

/* Responsive */
@media (max-width: 1024px) {
    /* Adjust floating icons on tablet to not overflow screen */
    .vxc-floating-icon.float-1 { right: 0; top: 10%; }
    .vxc-floating-icon.float-2 { right: 10px; bottom: 10%; }
    .vxc-connector-line { display: none; }
}

@media (max-width: 767px) {
    .vxc-contact-wrapper { padding: 60px 15px; }
    .vxc-main-card { padding: 24px; border-radius: 20px; }
    .vxc-contact-row { padding: 20px 0; }
    .vxc-row-icon { width: 44px; height: 44px; margin-right: 16px; font-size: 18px; }
    .vxc-row-title { font-size: 16px; }
    .vxc-row-desc { font-size: 14px; }
    /* Hide floating elements on mobile to keep it clean */
    .vxc-floating-icon, .vxc-dot-pattern { display: none !important; }
}