@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #ffffff;
    --text-color: #eaeaea;
    --accent-color: #ffd700;
    --highlight-color: #ffeb3b;
    --button-glow: #88cf97bf;
    --button-glow-2: #6969d98e;
    --youtube-hover-color: #be6363;
}

.contactDiv {
    min-height: 100vh;
    padding: 12rem 5% 5rem;
    background: linear-gradient(to bottom right, #91b96c, #474684);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.contactContainer {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
    gap: 30px;
}

.smConnect {
    flex: 1;
    min-width: 280px;
    padding: 20px;
    text-align: center;
}

.smConnect h3 {
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.smBtns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.smBtns .btn i {
    font-size: 30px;
    color: white;
    transition: 0.4s ease;
    padding: 14px;
}

.smBtns .btn i:hover {
    transform: scale(1.2) rotate(8deg);
    color: var(--accent-color);
}

.smBtns .btn:nth-child(2) i:hover{
    transform: scale(1.2) rotate(8deg);
    color: var(--youtube-hover-color);
}

.addressContainer {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 7%;
}

.addressBox {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.addressBox .icon {
    width: 60px;
    height: 60px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.addressBox .text h3 {
    color: #f5f5f5;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.addressBox .text p {
    color: #ddd;
    font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
    .contactContainer {
        flex-direction: column;
        padding: 30px 20px;
    }

    .smBtns {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .smBtns .btn i {
        font-size: 40px;
        padding: 15px;
    }

    .addressBox {
        flex-direction: column;
        align-items: flex-start;
    }

    .addressBox .icon {
        margin-bottom: 10px;
    }

    .addressBox .text h3 {
        font-size: 1.6rem;
    }

    .addressBox .text p {
        font-size: 1.3rem;
    }
}
