

.social-section{
    padding:90px 25px;
    background:#F8F5EF;
}

.social-header{
    max-width:750px;
    margin:auto;
    text-align:center;
    margin-bottom:70px;
}

.eyebrow{
    color:#B57E12;
    font-size:12px;
    letter-spacing:.25em;
    font-weight:700;
}

.social-header h2{
    font-family:"Cormorant Garamond",serif;
    font-size:60px;
    margin:18px 0;
    color:#222;
    font-weight:500;
}

.social-header p{
    font-size:18px;
    line-height:1.8;
    color:#666;
}

.social-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.social-card{

    position:relative;
    overflow:hidden;
    background:#fff;
    padding:45px;
    border-radius:24px;
    text-align:center;

    box-shadow:
    0 15px 35px rgba(0,0,0,.06);

    transition:.4s ease;

}

.social-card:before{

    content:"";
    position:absolute;
   
    padding:1px;

    background:linear-gradient(135deg,#D8C5A0,#ffffff);

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;
}

.social-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

}

.icon-wrap{

    width:88px;
    height:88px;

    border-radius:50%;
    margin:auto auto 30px;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;

    transition:.4s;

}

.social-card:hover .icon-wrap{

    transform:rotate(8deg) scale(1.08);

}

.icon-wrap svg{

    width:42px;
    height:42px;

}

.whatsapp .icon-wrap{

    background:#25D366;

}

.instagram .icon-wrap{

    background:linear-gradient(135deg,#F58529,#DD2A7B,#8134AF,#515BD4);

}

.facebook .icon-wrap{

    background:#1877F2;

}

.social-card h3{

    font-family:"Cormorant Garamond",serif;
    font-size:36px;
    margin-bottom:15px;
    color:#222;

}

.social-card p{

    color:#666;
    line-height:1.8;
    margin-bottom:35px;

}

.btn{

    display:inline-block;
    padding:14px 34px;
    border-radius:50px;
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:.35s;

}

.btn:hover{

    transform:translateY(-3px);

}

.whatsapp-btn{
    background:#25D366;
}

.instagram-btn{
    background:linear-gradient(135deg,#F58529,#DD2A7B,#8134AF);
}

.facebook-btn{
    background:#1877F2;
}

@media(max-width:768px){

.social-header h2{

font-size:42px;

}

.social-card{

padding:35px 28px;

}

}


/* ==========================
   Responsive
========================== */

@media (max-width:1024px){

    .social-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .social-header h2{
        font-size:52px;
    }

    .social-card{
        padding:40px 30px;
    }

}

@media (max-width:768px){

    .social-section{
        padding:70px 20px;
    }

    .social-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .social-header{
        margin-bottom:45px;
    }

    .social-header h2{
        font-size:40px;
        line-height:1.1;
        margin:15px 0;
    }

    .social-header p{
        font-size:16px;
        line-height:1.7;
    }

    .social-card{
        padding:35px 25px;
        border-radius:20px;
    }

    .icon-wrap{
        width:72px;
        height:72px;
        margin-bottom:20px;
    }

    .icon-wrap svg{
        width:34px;
        height:34px;
    }

    .social-card h3{
        font-size:30px;
        margin-bottom:12px;
    }

    .social-card p{
        font-size:15px;
        line-height:1.7;
        margin-bottom:25px;
    }

    .btn{
        display:block;
        width:100%;
        padding:14px 20px;
        text-align:center;
        font-size:15px;
    }

}

@media (max-width:480px){

    .social-section{
        padding:60px 15px;
    }

    .eyebrow{
        font-size:11px;
        letter-spacing:.18em;
    }

    .social-header h2{
        font-size:34px;
    }

    .social-header p{
        font-size:15px;
    }

    .social-card{
        padding:30px 20px;
    }

    .icon-wrap{
        width:65px;
        height:65px;
    }

    .icon-wrap svg{
        width:30px;
        height:30px;
    }

    .social-card h3{
        font-size:28px;
    }

    .btn{
        font-size:14px;
        padding:13px 18px;
    }

}