.get-in-touch {
    grid-column: 4 / 5; /* Move to fourth column */
    grid-row: 1 / 3;
    background: linear-gradient(145deg, #E8D9CD, #f0e6dd);
    border: 2px solid #e0d0be;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-header {
    font-family: "Kavoon", serif;
    font-weight: 100;
    font-size: 30px;
    margin-bottom: 12px;
    color: #3b342d;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 10px;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.social-item:hover {
    background-color: rgba(244, 242, 239, 0.7);
}

.social-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #F4F2EF;
    border-radius: 50%;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-icon-wrapper:hover {
    transform: translateY(-2px) scale(1.05);
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-icon {
    width: 28px;
    height: 28px;
    color: #333;
}

.social-info {
    display: flex;
    flex-direction: column;
}

.social-name {
    font-weight: 700;
    font-size: 19px;
    color: #5a4a3a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-username {
    font-weight: 500; /* Bolder font weight */
    font-size: 18px; /* Larger font size */
    color: #000000; /* Darker color for more focus */
    margin-top: 4px; /* Slight spacing from the name */
}

.social-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.contact-cta {
    text-align: center;
    margin-top: 15px;
    font-weight: 500;
    color: #6a5a4a;
    font-size: 16px;
}

.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000; /* Ensure it's above other elements */
}

.toast.show {
    opacity: 1;
    visibility: visible;
}