@import url('./projects.css');

.contact-card {
    background-color: #1a1a2e;
    border: 1px solid #3a2a6e;
    padding: 2.2rem;
    height: 100%;
    text-align: left;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #7d46ff !important;
    box-shadow: 0 8px 25px rgba(125, 70, 255, 0.2);
}

.contact-card .form-control {
    background-color: #0f0f1b !important;
    border: 1px solid #3a2a6e !important;
    color: #fff !important;
    border-radius: 0;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card .form-control:focus {
    border-color: #7d46ff !important;
    box-shadow: 0 0 15px rgba(125, 70, 255, 0.3) !important;
    outline: none;
}

.btn-send {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #7d46ff !important;
    border: 1px solid #7d46ff !important;
    color: #fff !important;
    padding: 0.75rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 0;
    transition: all 0.3s ease !important;
}

.btn-send:hover {
    background-color: #6a3ae0 !important;
    box-shadow: 0 0 20px rgba(125, 70, 255, 0.4);
    transform: translateY(-2px);
}

/* GET IN TOUCH CARD STYLING */
.get-in-touch-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #161626 100%) !important;
    border: 1px solid #3a2a6e !important;
    padding: 2.2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, box-shadow 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.get-in-touch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7d46ff, #a87ffb, #7d46ff);
    opacity: 0.8;
}

.get-in-touch-card:hover {
    transform: translateY(-5px);
    border-color: #7d46ff !important;
    box-shadow: 0 10px 30px rgba(125, 70, 255, 0.25) !important;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(125, 70, 255, 0.12);
    border: 1px solid rgba(125, 70, 255, 0.3);
    color: #dacbff;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    width: fit-content;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(0, 255, 136, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

.get-in-touch-title {
    color: #7d46ff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.get-in-touch-title .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(125, 70, 255, 0.15);
    border: 1px solid rgba(125, 70, 255, 0.3);
    color: #7d46ff;
    font-size: 1.1rem;
}

.get-in-touch-desc {
    color: #cfc6ec;
    font-size: 0.98rem;
    line-height: 1.6;
}

.get-in-touch-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.get-in-touch-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 1rem;
    background: rgba(15, 15, 27, 0.6);
    border: 1px solid rgba(58, 42, 110, 0.5);
    transition: all 0.3s ease;
}

.get-in-touch-list li:hover {
    background: rgba(125, 70, 255, 0.12);
    border-color: #7d46ff;
    transform: translateX(5px);
}

.get-in-touch-list .list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(125, 70, 255, 0.2);
    color: #7d46ff;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.get-in-touch-list li:hover .list-icon {
    transform: scale(1.1);
    background: #7d46ff;
    color: #fff;
}

.get-in-touch-list .list-text {
    display: flex;
    flex-direction: column;
}

.get-in-touch-list .list-text strong {
    color: #dacbff;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.get-in-touch-list .list-text span {
    color: #cfc6ec;
    font-size: 0.9rem;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(36, 26, 69, 0.6);
    border: 1px solid #3a2a6e;
    color: #dacbff;
    padding: 0.75rem 1.1rem;
    margin-bottom: 0.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-btn:hover {
    background-color: #7d46ff;
    color: #fff;
    border-color: #7d46ff;
    box-shadow: 0 4px 15px rgba(125, 70, 255, 0.3);
}

.link-btn i.arrow-icon {
    transition: transform 0.3s ease;
}

.link-btn:hover i.arrow-icon {
    transform: translateX(5px);
}


