#contact {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    padding: 60px 20px;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    box-shadow: 0px 0px 8px var(--glow-3);
    z-index: 1;
}

.glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.25;
    z-index: 1;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: var(--color-primary);
    top: 10%;
    left: -10%;
    opacity: 0.25;
    filter: blur(150px);
}

.glow-2 {
    width: 500px;
    height: 500px;
    /* background: var(--color-secondary); */
    bottom: -150px;
    right: -150px;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    padding: 80px 60px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 0 60px var(--glow-3),
        inset 0 0 40px var(--glow-05);
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    z-index: -1;
}

.cta-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-align: center;
}

.js-enabled .cta-subtitle {
    opacity: 0;
    transform: translateY(20px);
}

.cta-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
    /* text-shadow removed - using .neon-text class instead */
}

.js-enabled .cta-title {
    opacity: 0;
    transform: translateY(30px);
}

.cta-description {
    font-size: 20px;
    color: var(--color-gray-100);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 2px;
}

.js-enabled .cta-description {
    opacity: 0;
    transform: translateY(20px);
}

.cta-phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.cta-phone-number i {
    color: var(--color-primary);
    font-size: 22px;
}

.phone-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.phone-link:hover {
    color: var(--color-white);
    text-shadow: 0 0 10px var(--glow-3);
    transform: scale(1.05);
}

.js-enabled .cta-phone-number {
    opacity: 0;
    transform: translateY(20px);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-btn {
    position: relative;
    padding: 22px 50px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    background: var(--color-primary);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 
        0 0 30px var(--glow-5),
        0 10px 30px rgba(0, 0, 0, 0.5);
}

.js-enabled .cta-btn {
    opacity: 0;
    transform: scale(0.8);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 400px;
    height: 400px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 50px var(--glow-9),
        0 15px 40px rgba(0, 0, 0, 0.6);
}

.cta-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-btn span {
    position: relative;
    z-index: 1;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

.quick-call {
    text-align: center;
}

.js-enabled .quick-call {
    opacity: 0;
    transform: translateY(20px);
}

.quick-call a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    padding: 15px 30px;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    transition: all 0.3s ease;
    background: var(--glow-1);
}

.quick-call a:hover {
    background: var(--glow-2);
    box-shadow: 0 0 30px var(--glow-5);
    transform: scale(1.05);
}

.quick-call i {
    font-size: 24px;
    animation: phonePulse 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-container {
        padding: 50px 30px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .cta-description {
        font-size: 16px;
    }

    .cta-btn {
        padding: 18px 35px;
        font-size: 16px;
    }

    .quick-call a {
        font-size: 18px;
        padding: 12px 25px;
    }

    .glow-1, .glow-2 {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 28px;
    }

    .cta-container {
        padding: 40px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

