/* ====================================
   MODERN BIRD PROTECTION SECTION
==================================== */

.bird-protection-section{
    width:100%;
    padding:100px 0;
    background:linear-gradient(
        135deg,
        #cec3cd 0%,
        #edf4ff 100%
    );
    position:relative;
    overflow:hidden;
}

.bird-protection-section::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(13,59,102,.06);
    border-radius:50%;
    top:-100px;
    right:-100px;
}

.bird-protection-section::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(34,197,94,.08);
    border-radius:50%;
    bottom:-100px;
    left:-100px;
}

/* ======================
   LAYOUT
====================== */

.bird-protection-section{
    display:flex;
    align-items:center;
    justify-content:center;
}

.bird-protection-section{
    gap:70px;
    padding-left:5%;
    padding-right:5%;
}

/* ======================
   IMAGE SIDE
====================== */

.bird-image{
    flex:1;
    position:relative;
}

.bird-image::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border:4px solid #da59de;
    border-radius:30px;
    top:15px;
    right:-15px;
    z-index:0;
}

.bird-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:30px;
    border:6px solid #fff;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    position:relative;
    z-index:1;
}

/* ======================
   CONTENT SIDE
====================== */

.bird-content{
    flex:1;
    max-width:650px;
}

.bird-tag{
    display:inline-block;
    padding:10px 18px;
    background:#0d3b66;
    color:#eff0f3;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:20px;
}

.bird-content h2{
    font-size:58px;
    line-height:1.15;
    color:#0d3b66;
    margin-bottom:30px;
    font-weight:800;
}

.bird-content p{
    font-size:18px;
    line-height:2;
    color:#222;
    margin-bottom:20px;
}

/* ======================
   FEATURES
====================== */

.bird-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:35px;
}

.feature-card{
    background:#eff0f0;
    padding:18px;
    border-radius:15px;
    font-size:15px;
    font-weight:600;
    color:#0d3b66;

    box-shadow:
    0 10px 25px rgba(0,0,0,.06);

    transition:.3s ease;
}

.feature-card:hover{
    transform:translateY(-5px);
}

.feature-card span{
    color:#16a34a;
    font-weight:700;
    margin-right:8px;
}

/* ======================
   RESPONSIVE
====================== */

@media(max-width:992px){

    .bird-protection-section{
        flex-direction:column;
        gap:50px;
        padding:80px 25px;
    }

    .bird-content h2{
        font-size:42px;
    }

    .bird-image img{
        height:450px;
    }

    .bird-image::before{
        display:none;
    }
}

@media(max-width:768px){

    .bird-protection-section{
        padding:60px 20px;
    }

    .bird-content h2{
        font-size:32px;
    }

    .bird-content p{
        font-size:15px;
        line-height:1.8;
    }

    .bird-features{
        grid-template-columns:1fr;
    }

    .bird-image img{
        height:320px;
    }

    .bird-tag{
        font-size:12px;
    }
}

.premium-call-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:12px 28px;

    background:#ad61d0;
    color:#fff;

    text-decoration:none;
    border-radius:60px;

    font-weight:700;
    font-size:16px;

    transition:.4s;

    animation:ringPulse 2s infinite;
}

.premium-call-btn span{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;
    color:#16a34a;

    border-radius:50%;
    font-size:20px;
}

.premium-call-btn:hover{
    transform:translateY(-4px);
    color:#fff;
}

@keyframes ringPulse{

    0%{
        box-shadow:0 0 0 0 rgba(22,163,74,.6);
    }

    70%{
        box-shadow:0 0 0 18px rgba(22,163,74,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(22,163,74,0);
    }
}









