/* Enhanced Utils Page - Tech-Oriented Design */
:root {
    --utils-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --utils-gradient-dark: linear-gradient(
        135deg,
        #0a0e27 0%,
        #1a1d3a 50%,
        #2d1b69 100%
    );
    --warning-light: #fbbf24;
    --tech-primary: #00d4ff;
    --tech-secondary: #0099cc;
    --tech-accent: #ff6b35;
    --tech-success: #00ff88;
    --tech-bg: rgba(10, 14, 39, 0.95);
    --tech-card: rgba(26, 29, 58, 0.8);
    --tech-border: rgba(0, 212, 255, 0.3);
    --tech-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    --matrix-green: #00ff41;
}

@media (prefers-color-scheme: dark) {
    :root {
        --utils-gradient: var(--utils-gradient-dark);
    }
}

/* Digital Matrix Background */
.utils-hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            2px 2px at 20px 30px,
            var(--matrix-green),
            transparent
        ),
        radial-gradient(2px 2px at 40px 70px, var(--tech-primary), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--tech-accent), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--matrix-green), transparent);
    background-size: 200px 200px;
    animation: matrix-rain 20s linear infinite;
    opacity: 0.1;
    z-index: 1;
}

@keyframes matrix-rain {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100vh);
    }
}

/* Enhanced Tools Section with Tech Background */
.utils-tools-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.95) 0%,
        rgba(26, 29, 58, 0.95) 100%
    );
    overflow: hidden;
}

.utils-tools-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(
            90deg,
            rgba(0, 212, 255, 0.1) 1px,
            transparent 1px
        ),
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
}

/* Utils Utilities */
.text-warning-light {
    color: var(--warning-light);
}

/* Enhanced Hero Section with Tech Elements */
.utils-hero-section {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.utils-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--utils-gradient);
    z-index: 0;
}

/* Add tech grid overlay */
.utils-hero-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(
            rgba(0, 212, 255, 0.1) 1px,
            transparent 1px
        ),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.3;
    animation: grid-pulse 4s ease-in-out infinite alternate;
}

@keyframes grid-pulse {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 0.4;
    }
}

.utils-hero-content {
    z-index: 2;
}

/* Enhanced Badge with Holographic Effect */
.utils-badge .badge-modern {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 2rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.utils-badge .badge-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: badge-shimmer 2s infinite;
}

@keyframes badge-shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.utils-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

/* Enhanced Feature Items with Tech Styling */
.utils-feature-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.utils-feature-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--tech-primary),
        var(--tech-accent)
    );
    transition: width 0.3s ease;
}

.utils-feature-item:hover::before {
    width: 100%;
    opacity: 0.1;
}

.utils-feature-item:hover {
    border-color: var(--tech-primary);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
    transform: translateX(8px);
}

/* Enhanced Action Buttons */
.utils-actions .btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    z-index: 10;
}

.utils-actions .btn-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: #f59e0b;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.utils-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.utils-actions .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.utils-actions .btn:hover::before {
    left: 100%;
}

.utils-actions .btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.utils-actions .btn-warning:hover {
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4),
        0 5px 15px rgba(245, 158, 11, 0.2), 0 0 25px rgba(245, 158, 11, 0.6);
}

.utils-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2),
        0 0 25px rgba(255, 255, 255, 0.3);
}

/* Enhanced Tech Visual Elements */
.utils-floating-elements {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
}

/* Add holographic display effect */
.utils-visual {
    position: relative;
}

.utils-visual::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    background: radial-gradient(
            circle at center,
            rgba(0, 212, 255, 0.1) 0%,
            transparent 70%
        ),
        conic-gradient(
            from 0deg,
            transparent,
            rgba(0, 212, 255, 0.2),
            transparent
        );
    border-radius: 50%;
    animation: holographic-display 8s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes holographic-display {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.utils-element {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid var(--tech-border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    animation: float 6s ease-in-out infinite,
        tech-pulse 3s ease-in-out infinite alternate;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 2;
}

@keyframes tech-pulse {
    0% {
        box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    100% {
        box-shadow: 0 8px 35px rgba(0, 212, 255, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            0 0 20px rgba(0, 212, 255, 0.3);
    }
}

.utils-element:hover {
    transform: scale(1.15);
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--tech-primary);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 30px rgba(0, 212, 255, 0.6);
}

.utils-element i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.utils-element span {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

.utils-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(
        circle at center,
        rgba(0, 212, 255, 0.3) 0%,
        rgba(10, 14, 39, 0.9) 70%
    );
    backdrop-filter: blur(25px);
    border: 3px solid var(--tech-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s ease-in-out infinite, rotate-border 6s linear infinite;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    z-index: 3;
}

@keyframes rotate-border {
    0% {
        border-color: var(--tech-primary);
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.5),
            inset 0 2px 0 rgba(255, 255, 255, 0.2);
    }

    25% {
        border-color: var(--tech-accent);
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.5),
            inset 0 2px 0 rgba(255, 255, 255, 0.2);
    }

    50% {
        border-color: var(--tech-success);
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.5),
            inset 0 2px 0 rgba(255, 255, 255, 0.2);
    }

    75% {
        border-color: var(--tech-accent);
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.5),
            inset 0 2px 0 rgba(255, 255, 255, 0.2);
    }

    100% {
        border-color: var(--tech-primary);
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.5),
            inset 0 2px 0 rgba(255, 255, 255, 0.2);
    }
}

.utils-center-icon i {
    font-size: 3.5rem;
    color: var(--tech-primary);
    text-shadow: 0 0 20px var(--tech-primary);
    animation: icon-glow 2s ease-in-out infinite alternate;
}

@keyframes icon-glow {
    0% {
        color: var(--tech-primary);
        text-shadow: 0 0 20px var(--tech-primary);
    }

    100% {
        color: #ffffff;
        text-shadow: 0 0 30px var(--tech-primary), 0 0 40px var(--tech-primary);
    }
}

/* Position floating elements in circular orbit around .utils-visual::before */
/* Center is at 50%, 50% with 400px circle radius of ~180px from center */
.utils-element.element-1 {
    top: 20%;
    left: -60;
    animation-delay: 0s;
}

.utils-element.element-2 {
    top: 20%;
    right: -60;
    animation-delay: 1s;
}

.utils-element.element-3 {
    bottom: 0;
    left: -10;
    animation-delay: 2s;
}

.utils-element.element-4 {
    top: -60;
    left: 38%;
    animation-delay: 3s;
}

.utils-element.element-5 {
    bottom: 0;
    right: -10;
    animation-delay: 4s;
    transform: translateY(-50%);
}

.utils-element.element-6 {
    top: 50%;
    right: -80;
    animation-delay: 5s;
    transform: translateY(-50%);
}

/* Utils Decorations */
.utils-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.utils-decoration.decoration-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.utils-decoration.decoration-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.utils-decoration.decoration-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

/* === ENHANCED HOLOGRAPHIC TOOL CARDS === */
.utils-tool-card {
    background: var(--tech-card);
    border: 2px solid var(--tech-border);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--tech-glow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

/* Holographic border glow effect */
.utils-tool-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        var(--tech-primary),
        var(--tech-accent),
        var(--tech-success),
        var(--tech-primary)
    );
    background-size: 300% 300%;
    border-radius: 16px;
    z-index: -1;
    animation: holographic-border 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.utils-tool-card:hover::before {
    opacity: 1;
}

@keyframes holographic-border {
    0%,
    100% {
        background-position: 0% 50%;
    }

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

/* Scanline effect */
.utils-tool-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--tech-primary),
        transparent
    );
    transition: left 0.5s ease;
    z-index: 2;
}

.utils-tool-card:hover::after {
    left: 100%;
}

.utils-tool-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--warning));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.utils-tool-card:hover::before {
    opacity: 1;
}

.utils-tool-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--tech-glow), 0 20px 40px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--tech-primary);
}

/* Glitch animation for tool icons */
.utils-tool-card:hover .utils-tool-icon {
    animation: glitch 0.3s ease-in-out;
}

@keyframes glitch {
    0%,
    100% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }
}

.utils-tool-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.utils-tool-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.1),
        rgba(255, 107, 53, 0.1)
    );
    border: 1px solid var(--tech-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.utils-tool-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    border-radius: 12px;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.utils-tool-card:hover .utils-tool-icon::before {
    transform: translateX(100%);
}

/* Enhanced Tool Badges with Tech Colors */
.utils-tool-badge {
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px currentColor;
    position: relative;
    overflow: hidden;
}

.utils-tool-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.utils-tool-card:hover .utils-tool-badge::before {
    transform: translateX(100%);
}

.utils-tool-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tech-primary);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.utils-tool-card:hover .utils-tool-title {
    color: #ffffff;
    text-shadow: 0 0 20px var(--tech-primary);
}

.utils-tool-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.utils-tool-card:hover .utils-tool-description {
    color: rgba(255, 255, 255, 0.95);
}

.utils-tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.utils-feature-tag {
    background: rgba(0, 212, 255, 0.15);
    color: var(--tech-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.utils-tool-card:hover .utils-feature-tag {
    background: rgba(0, 212, 255, 0.25);
    color: #ffffff;
    border-color: var(--tech-primary);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.utils-tool-footer .btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid currentColor;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.utils-tool-footer .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.utils-tool-footer .btn:hover::before {
    left: 100%;
}

.utils-tool-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 20px currentColor;
}

/* === ENHANCED COMPACT TOOL CARDS === */
.utils-compact-card {
    background: var(--tech-card);
    border: 1px solid var(--tech-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
    position: relative;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    backdrop-filter: blur(15px);
    overflow: hidden;
}

/* Animated background pattern */
.utils-compact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
            45deg,
            transparent 45%,
            rgba(0, 212, 255, 0.05) 50%,
            transparent 55%
        ),
        linear-gradient(
            -45deg,
            transparent 45%,
            rgba(255, 107, 53, 0.05) 50%,
            transparent 55%
        );
    background-size: 20px 20px;
    animation: pattern-move 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.utils-compact-card:hover::before {
    opacity: 1;
}

@keyframes pattern-move {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20px, 20px);
    }
}

.utils-compact-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2),
        0 0 20px rgba(0, 212, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--tech-primary);
}

/* Neon glow for compact icons */
.utils-compact-card:hover .utils-compact-icon {
    box-shadow: 0 0 20px currentColor;
    transform: scale(1.1);
}

.utils-compact-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.utils-compact-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--tech-primary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.utils-compact-card:hover .utils-compact-title {
    color: #ffffff;
    text-shadow: 0 0 15px var(--tech-primary);
}

.utils-compact-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.utils-compact-card:hover .utils-compact-desc {
    color: rgba(255, 255, 255, 0.9);
}

.utils-compact-link {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: linear-gradient(
        135deg,
        var(--tech-primary),
        var(--tech-secondary)
    );
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.8) rotate(-90deg);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.utils-compact-card:hover .utils-compact-link {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.8);
}

.utils-compact-link:hover {
    transform: scale(1.1) rotate(0deg) !important;
    background: linear-gradient(
        135deg,
        var(--tech-accent),
        var(--tech-primary)
    );
}

/* === ENHANCED CTA SECTION === */
.utils-cta-section {
    background: var(--utils-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.utils-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--utils-gradient);
    z-index: 0;
}

/* Add tech circuit overlay to CTA */
.utils-cta-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(
            circle at 25% 25%,
            rgba(0, 212, 255, 0.1) 2px,
            transparent 2px
        ),
        radial-gradient(
            circle at 75% 75%,
            rgba(255, 107, 53, 0.1) 2px,
            transparent 2px
        );
    background-size: 100px 100px;
    animation: circuit-flow 15s linear infinite;
}

@keyframes circuit-flow {
    0% {
        transform: translate(0, 0);
    }

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

.utils-cta-badge .badge-modern-light {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 2rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
}

.utils-cta-badge .badge-modern-light::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: badge-shimmer 2.5s infinite;
}

.utils-cta-buttons .btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    z-index: 10;
}

.utils-cta-buttons .btn-light {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #0a0e27;
    border-color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.utils-cta-buttons .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.utils-cta-buttons .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.utils-cta-buttons .btn:hover::before {
    left: 100%;
}

.utils-cta-buttons .btn:hover {
    transform: translateY(-4px) scale(1.05);
}

.utils-cta-buttons .btn-light:hover {
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3),
        0 5px 15px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
}

.utils-cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2),
        0 0 25px rgba(255, 255, 255, 0.4);
}

.utils-cta-decoration {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 212, 255, 0.2) 0%,
        transparent 70%
    );
    animation: float 10s ease-in-out infinite,
        tech-glow 4s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes tech-glow {
    0% {
        background: radial-gradient(
            circle,
            rgba(0, 212, 255, 0.2) 0%,
            transparent 70%
        );
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }

    100% {
        background: radial-gradient(
            circle,
            rgba(255, 107, 53, 0.2) 0%,
            transparent 70%
        );
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
    }
}

.utils-cta-decoration.decoration-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.utils-cta-decoration.decoration-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 10%;
    animation-delay: 3s;
}

/* === ENHANCED RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .utils-hero-section {
        min-height: 70vh;
        padding: 2rem 0;
    }

    .utils-floating-elements {
        width: 280px;
        height: 280px;
    }

    .utils-element {
        width: 70px;
        height: 70px;
    }

    .utils-element i {
        font-size: 1.2rem;
    }

    .utils-center-icon {
        width: 100px;
        height: 100px;
    }

    .utils-center-icon i {
        font-size: 2.2rem;
    }

    .utils-features {
        grid-template-columns: 1fr;
    }

    .utils-actions {
        flex-direction: column;
    }

    .utils-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Reduce animation intensity on mobile */
    .utils-tool-card:hover {
        transform: translateY(-4px) scale(1.01);
    }

    .utils-compact-card:hover {
        transform: translateY(-4px) scale(1.02);
    }

    /* Optimize tech effects for mobile */
    .utils-hero-section::after {
        background-size: 150px 150px;
        animation-duration: 25s;
    }

    .utils-tools-section::before {
        background-size: 30px 30px;
    }
}

@media (max-width: 576px) {
    .utils-tool-card {
        padding: 1.2rem;
    }

    .utils-compact-card {
        min-height: 160px;
        padding: 1rem;
    }

    .utils-floating-elements {
        display: none;
    }

    /* Mobile-optimized badges */
    .utils-badge .badge-modern,
    .section-badge .badge-modern-dark,
    .utils-cta-badge .badge-modern-light {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Reduce glow effects on small screens */
    .utils-tool-card {
        box-shadow: 0 4px 15px rgba(0, 212, 255, 0.15);
    }

    .utils-compact-card {
        box-shadow: 0 2px 10px rgba(0, 212, 255, 0.1);
    }

    /* Optimize matrix background for mobile */
    .utils-hero-section::after {
        background-size: 100px 100px;
        opacity: 0.05;
    }

    .utils-cta-bg::after {
        background-size: 60px 60px;
        opacity: 0.1;
    }
}
