.call-expert {
    background-image: url(../images/premium_tech_bg.png);
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    position: relative;
    overflow: hidden;
}

.call-expert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 35, 64, 0.9) 0%, rgba(11, 35, 64, 0.7) 100%);
    z-index: 0;
}

.call-expert .uk-container {
    position: relative;
    z-index: 1;
}

.premium-perk-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s ease;
}

.premium-perk-card h4 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
}

.premium-perk-card p {
    color: #94a3b8;
    margin-bottom: 0;
}

.premium-perk-card:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(212, 175, 55, 0.4) !important;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

#enterprise-solutions {
    background-color: #f8fafc;
    background-image: radial-gradient(rgba(11, 35, 64, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    position: relative;
}

#enterprise-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, #ffffff, transparent);
    z-index: 1;
}

.enterprise-card-inner {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(11, 35, 64, 0.05) !important;
    box-shadow: 0 10px 30px rgba(11, 35, 64, 0.03) !important;
    border-radius: 20px !important;
    padding: 40px !important;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.enterprise-card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--zc-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.enterprise-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 35, 64, 0.08) !important;
    border-color: rgba(11, 35, 64, 0.1) !important;
}

.enterprise-card-inner:hover::after {
    transform: scaleX(1);
}

.premium-cta-card {
    background: rgba(11, 35, 64, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.premium-cta-img-wrapper {
    margin: -48px -40px 24px -40px;
    position: relative;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.premium-cta-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, rgba(11, 35, 64, 0.8), transparent);
}

.premium-cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.premium-cta-card:hover .premium-cta-img {
    transform: scale(1.05);
}

.premium-cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 108, 255, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.premium-cta-card>* {
    position: relative;
    z-index: 1;
}

.premium-cta-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.premium-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #F3C96B, #D4AF37);
    background-size: 200% auto;
    animation: goldShine 3s linear infinite;
}

@keyframes goldShine {
    to {
        background-position: 200% center;
    }
}

@keyframes pulseBg {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.pulse-btn:hover {
    animation: pulseBg 1.5s infinite;
}

.hero {
    padding: 80px 0 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero::after {
    background-image: url(../images/hero-bg.jpg);
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    opacity: 0.2;
}

.hero-grid {
    align-items: center
}

.hero-visual {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(11, 35, 64, 0.08)
}

.hero-caption h1 {
    font-size: 38px;
    line-height: 1.05;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    /* display: block !important; */
    letter-spacing: 5px;
    font-size: 28px;
    text-transform: uppercase;
    color: #666;
}

.hero-caption h1>span {
    display: block;
    letter-spacing: 0;
    font-size: 56px;
    text-transform: capitalize;
    color: #000;
}

.talk-to-expert {
    height: 100%;
}

.service-svg path {
    color: #d4af3740;
    fill: #d4af3740;
}

.service-svg {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    top: 10px;
    z-index: 0;
}

.hero-grid {
    z-index: 1;
    position: relative;
}

.contactform-top::before {
    background-image: url(../images/pattern.svg);
    content: '';
    left: 0;
    top: -28px;
    z-index: -2;
    /* color: red; */
    /* fill: red; */
    width: 100px;
    height: 100px;
    position: absolute;
}

.firstpara {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #666;
}

.taglineservice {
    font-size: 9.77px;
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0;
}

.clients-section {
    background-image: url(../images/world-map.jpg);
    background-position: right;
    background-size: cover;
}

/* =========================================================================
   ENTERPRISE SOLUTIONS REDESIGN
   ========================================================================= */

#enterprise-solutions {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
    z-index: 1;
}

/* Base animated mesh gradient background */
#enterprise-solutions::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 108, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(11, 35, 64, 0.03) 0%, transparent 40%);
    animation: rotateMesh 40s linear infinite;
    z-index: -2;
}

/* Sophisticated top fade for seamless blending */
#enterprise-solutions::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, #ffffff, transparent);
    z-index: -1;
}

@keyframes rotateMesh {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Premium Glassmorphism Card Container */
.enterprise-premium-card {
    border-radius: 24px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 16px 40px rgba(11, 35, 64, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 1px 0 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(11, 35, 64, 0.06);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

/* The glowing colored top border */
.enterprise-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--card-color, var(--zc-primary));
    opacity: 0.7;
    transition: all 0.5s ease;
    border-radius: 24px 24px 0 0;
}

/* Hover State - Float and Glow */
.enterprise-premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(11, 35, 64, 0.08),
        0 0 40px var(--card-glow, rgba(0, 108, 255, 0.1));
    border-color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.85);
}

.enterprise-premium-card:hover::before {
    opacity: 1;
    height: 6px;
    box-shadow: 0 4px 15px var(--card-glow, rgba(0, 108, 255, 0.3));
}

/* Icon Container & Organic Shape */
.enterprise-premium-card .icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
    box-shadow: 0 8px 20px rgba(11, 35, 64, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    z-index: 2;
    transition: all 0.5s ease;
}

.enterprise-premium-card:hover .icon-wrapper {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(11, 35, 64, 0.1),
        0 0 20px var(--card-glow, rgba(0, 108, 255, 0.2));
}

.enterprise-premium-card .icon-wrapper img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    z-index: 3;
    transition: transform 0.5s ease;
}

.enterprise-premium-card:hover .icon-wrapper img {
    transform: scale(1.1) rotate(5deg);
}

/* Background Glowing Orb behind icon */
.enterprise-premium-card .icon-wrapper::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, var(--card-glow, rgba(0, 108, 255, 0.15)) 0%, transparent 60%);
    z-index: 1;
    transition: all 0.5s ease;
    opacity: 0;
}

.enterprise-premium-card:hover .icon-wrapper::before {
    opacity: 1;
    transform: scale(1.1);
}

/* Typography styles */
.enterprise-premium-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--zc-navy);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.enterprise-premium-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--card-color, var(--zc-primary));
    margin-bottom: 16px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.enterprise-premium-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* "Explore Action" Button */
.enterprise-premium-card .explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--card-color, var(--zc-primary));
    margin-top: auto;
    transition: all 0.3s ease;
}

.enterprise-premium-card .explore-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.enterprise-premium-card:hover .explore-btn {
    gap: 12px;
}

/* =========================================================================
   ENTERPRISE CTA CARD (3rd Box)
   ========================================================================= */

.enterprise-cta-card {
    border-radius: 24px;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--zc-primary), var(--zc-navy));
    box-shadow: 0 16px 40px rgba(0, 108, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

/* Background animated mesh/glow */
.enterprise-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 210, 255, 0.3) 0%, transparent 60%);
    z-index: -1;
    animation: rotateGlow 15s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hover State */
.enterprise-cta-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 108, 255, 0.3);
}

.cta-floating-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin: 0 auto 20px auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
}

.enterprise-cta-card:hover .cta-floating-icon {
    transform: scale(1.1) rotate(-10deg);
    background: rgba(255, 255, 255, 0.25);
}

.cta-btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    color: var(--zc-navy);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.enterprise-cta-card:hover .cta-btn-white {
    background: var(--zc-gold);
    color: var(--zc-navy);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.cta-btn-white i {
    transition: transform 0.3s ease;
}

.enterprise-cta-card:hover .cta-btn-white i {
    transform: translateX(4px);
}

.dots-style::before {
    content: '';
    width: 63%;
    height: 96%;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: translateX(40%) translateY(-20%);
    transform: translateX(40%) translateY(-20%);
    background-image: url(../images/resources/dot-pattern.png);
    background-repeat: repeat;
    background-position: 0 0;
    opacity: 0.2;
}

.contactform-top {
    position: relative;
    z-index: 1;
}

.hero-caption p {
    color: var(--muted);
    font-size: 18px
}

.service-card-inner {
    border-radius: 16px;
    padding: 32px 24px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(11, 35, 64, 0.04);
    border: 1px solid rgba(11, 35, 64, 0.06);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(0);
}

.service-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(11, 35, 64, 0.12);
    border-color: rgba(0, 108, 255, 0.15);
}

.service-icon {
    max-width: 70px;
    height: 70px;
    width: 100%;
    margin: 0 auto;
    border-radius: 100%;
    display: flex;
    align-items: center;
    transition: 0.5s;
}

.service-card a:focus,
.service-card a:hover {
    text-decoration: none;
}

.service-icon img {
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1) rotate(-5deg);
}

.service-card a:hover .service-svg path {
    fill: rgba(0, 108, 255, 0.08);
    transition: 0.5s ease;
}

.service-icon img {
    max-width: 36px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.testimonials-icon img {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 15px;
    opacity: 0.09;
    top: 15px;
}

.testimonials-section {
    position: relative;
}

.slider-nav-testimonials a {
    background: #f3e9c9;
    padding: 20px;
    background: transparent;
    border: 1px solid #FFF;
    color: #FFF;
    opacity: 0.6;
}

.testimonials {
    background-image: url(../images/world-map.jpg);
    background-position: right;
    background-size: cover;
}

.slider-nav-testimonials a:hover {
    background: #97d5f7;
    transition: 0.5s;
}

.slider-nav-testimonials {
    height: 50px;
    /* background: red; */
    width: 100%;
    position: absolute;
    right: 0;
    top: -60px;
}

.slider-nav-testimonials a.uk-position-center-left {
    left: -90px;
    position: absolute;
    top: 200px;
}

.slider-nav-testimonials a.uk-position-center-right {
    right: -90px;
    position: absolute;
    top: 200px;
}

.service-card a:hover .service-card-inner {
    background: linear-gradient(to bottom right, #ffffff, #eff7ff);
    background-color: #b3dff8;
}

.kpi {
    display: flex;
    gap: 28px;
    align-items: center
}

.kpi .item {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(11, 35, 64, 0.04);
    min-width: 160px;
    text-align: center
}

.kpi .num {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-blue)
}

.kpi .label {
    color: var(--muted);
    font-size: 13px
}

.testimonial {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(11, 35, 64, 0.04)
}

.contactform-bottom::before {
    content: '';
    right: -30px;
    left: auto;
}

/* Container styles (optional) */
.arrow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    /* Adjust as needed */
}

/* Arrow shape using pseudo-elements */
.arrow {
    position: relative;
    transform: rotate(0deg);
    /* Rotates the square to form a diamond shape */
    animation: slight-move 1.5s infinite alternate ease-in-out;
    display: inline-block;
    top: 1px;
    padding-left: 3px;
}

/* Keyframe animation for slight movement */
@keyframes slight-move {
    0% {
        transform: rotate(0deg) translateX(0);
    }

    100% {
        transform: rotate(0deg) translateX(7px);
        /* Moves it slightly to the right */
    }
}

@media (max-width:768px) {
    .hero-caption h1 {
        font-size: 28px
    }

    .hero {
        padding: 36px 0
    }

    .mobile-top-margin {
        margin-top: 10px;
    }
}

/* =========================================================================
   FAQ & CONTACT SECTION (PREMIUM "KAMAL" REDESIGN)
   ========================================================================= */

.premium-faq-section {
    position: relative;
    background-color: #fbfdff;
    /* Very slight cool tint */
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
    border-top: 1px solid rgba(11, 35, 64, 0.04);
}

/* Background Decorative Orbs for "Kamal" look */
.premium-faq-section .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.premium-faq-section .orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 108, 255, 0.08) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.premium-faq-section .orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* Typography Enhancements */
.section-title-premium {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--zc-navy);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-title-premium .highlight-text {
    color: var(--zc-primary);
    background: linear-gradient(135deg, var(--zc-primary), #00d2ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sleek Accordion Styling */
.premium-accordion {
    max-width: 550px;
}

.premium-accordion>li {
    background: #ffffff;
    border: 1px solid rgba(11, 35, 64, 0.06);
    border-radius: 12px;
    margin-bottom: 16px;
    padding: 20px 24px;
    box-shadow: 0 4px 15px rgba(11, 35, 64, 0.02);
    transition: all 0.3s ease;
}

.premium-accordion>li.uk-open {
    border-color: rgba(0, 108, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 108, 255, 0.05);
}

.accordion-title-sleek {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--zc-navy);
    display: block;
}

.accordion-content-sleek p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin-top: 12px;
}

/* Premium Form Card (Glassmorphism) */
.premium-contact-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 50px rgba(11, 35, 64, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.premium-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(11, 35, 64, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.premium-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--zc-primary), var(--zc-gold));
    border-radius: 24px 24px 0 0;
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--zc-navy);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.card-header p {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 24px;
}

/* Form Input Styling */
.premium-form .input-wrapper {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(11, 35, 64, 0.02);
    border: 1px solid rgba(11, 35, 64, 0.08);
    transition: all 0.3s ease;
}

.premium-form .input-wrapper:focus-within {
    border-color: var(--zc-primary);
    box-shadow: 0 0 0 3px rgba(0, 108, 255, 0.1);
}

.premium-form .input-wrapper svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--zc-primary);
    pointer-events: none;
}

.premium-form .textarea-wrapper svg {
    top: 24px;
    transform: none;
}

.premium-form .uk-input,
.premium-form .uk-select,
.premium-form .uk-textarea {
    background: transparent;
    border: none;
    border-radius: 12px;
    padding-left: 48px;
    padding-right: 16px;
    color: var(--zc-navy);
    font-size: 0.95rem;
    box-shadow: none !important;
}

.premium-form .uk-input,
.premium-form .uk-select {
    height: 50px;
}

.premium-form .uk-textarea {
    padding-top: 16px;
    resize: vertical;
    min-height: 100px;
}

.premium-form .uk-input::placeholder,
.premium-form .uk-textarea::placeholder,
.premium-form .uk-select:invalid {
    color: #94a3b8;
}

/* Captcha Row */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(11, 35, 64, 0.02);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px dashed rgba(11, 35, 64, 0.1);
    margin-left: 15px;
}

.captcha-badge {
    font-weight: 700;
    color: var(--zc-navy);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.captcha-badge svg {
    color: var(--zc-primary);
}

.captcha-input {
    background: #ffffff !important;
    border: 1px solid rgba(11, 35, 64, 0.08) !important;
    padding-left: 16px !important;
    max-width: 150px;
    height: 40px !important;
    flex-grow: 1;
}

/* Full Width CTA Button with Animated Gradient */
.full-width-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 108, 255, 0.2);

    /* Animated Gradient Magic */
    background: linear-gradient(270deg, var(--zc-primary), #00d2ff, var(--zc-navy), var(--zc-primary));
    background-size: 300% 300%;
    animation: gradientFlowBtn 4s ease infinite;

    color: white;
    border: none;
    font-weight: 600;
}

@keyframes gradientFlowBtn {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.full-width-btn:hover {
    box-shadow: 0 12px 25px rgba(0, 108, 255, 0.4);
    transform: translateY(-2px);
    color: white;
}