.contact-section {
    background: white;
    box-shadow: 0 15px 50px rgba(0, 0, 100, 0.1);
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #1a3a6b, #4a90e2);
}
.contact-text {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.7;
}
.contact-btn {
    background: linear-gradient(90deg, #1a3a6b, #4a90e2);
    color: white;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(26, 58, 107, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.contact-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}
.contact-btn:hover:before {
    left: 100%;
}
.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 58, 107, 0.4);
}
.contact-btn:active {
    transform: translateY(0);
}
.contact-decoration {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}
.contact-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(90deg, #1a3a6b, #4a90e2);
    top: -80px;
    right: -80px;
}
.contact-square {
    width: 150px;
    height: 150px;
    bottom: -60px;
    left: -60px;
    background: linear-gradient(90deg, #1a3a6b, #4a90e2);
    transform: rotate(45deg);
}
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 20px;
    }
    .contact-text {
        font-size: 1.2rem;
    }
    .contact-btn {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    .circle, .square {
        display: none;
    }
}
