.btn {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    background: #000000;
    color: #ffe4da;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(94, 62, 48, 0.2);
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(94, 62, 48, 0.25);
    background: rgba(0, 0, 0, 0.25);
}

.btn:active {
    transform: translateY(1px);
}

.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 228, 218, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    background: #fff4f0;
    width: 90%;
    max-width: 450px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(94, 62, 48, 0.3);
    transform: translateY(-50px);
    transition: all 0.3s ease;
    color: #5e3e30;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: #5e3e30;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #4a3126;
    transform: rotate(90deg);
}

.close-btn::before,
.close-btn::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 15px;
    background: #ffe4da;
}

.close-btn::before {
    transform: rotate(45deg);
}

.close-btn::after {
    transform: rotate(-45deg);
}

.modal-title {
    font-family: poppins, sans-serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #5e3e30;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.modal-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #5e3e30;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #5e3e30;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    width: 24px;
    text-align: center;
    color: #5e3e30;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: #ffe4da;
    transition: all 0.3s ease;
    background: #5e3e30;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    background: #4a3126;
}
