/* ===================================
EYAS OFFERS PAGE
PREMIUM VERSION
=================================== */

.offers-page{
padding:100px 0;
background:#05070d;
}

.offers-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
margin-top:60px;
}

.offer-card{
position:relative;
overflow:hidden;
border-radius:30px;
background:#111827;
box-shadow:0 20px 60px rgba(0,0,0,.4);
transition:.4s;
min-height:550px;
}

.offer-card:hover{
transform:translateY(-10px);
}

.offer-card img{
width:100%;
height:100%;
object-fit:contain;
background:#000;
display:block;
padding:15px;
}

.offer-overlay{
position:absolute;
bottom:0;
right:0;
left:0;

background:linear-gradient(
to top,
rgba(0,0,0,.95),
rgba(0,0,0,.2)
);

padding:30px;
}

.offer-overlay h3{
font-size:28px;
font-weight:800;
color:#fff;
margin-bottom:20px;
line-height:1.6;
}

.offer-actions{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.offer-btn{
display:inline-flex;
align-items:center;
justify-content:center;

padding:14px 28px;

background:#d4af37;
color:#000;

font-weight:800;
text-decoration:none;

border-radius:12px;

transition:.3s;
}

.offer-btn:hover{
transform:translateY(-3px);
background:#fff;
}

.offer-btn.secondary{
background:transparent;
color:#fff;
border:1px solid rgba(255,255,255,.3);
}

.offer-btn.secondary:hover{
background:#fff;
color:#000;
}

/* TITLE */

.offers-page .section-title{
text-align:center;
margin-bottom:50px;
}

.offers-page .section-title span{
color:#d4af37;
font-weight:700;
}

.offers-page .section-title h2{
font-size:52px;
font-weight:900;
margin:15px 0;
color:#fff;
}

.offers-page .section-title p{
max-width:700px;
margin:auto;
color:#cbd5e1;
font-size:18px;
line-height:2;
}

/* TABLET */

@media(max-width:992px){

.offers-grid{
grid-template-columns:1fr;
}

}

/* MOBILE */

@media(max-width:768px){

.offers-page{
padding:70px 0;
}

.offers-page .section-title h2{
font-size:34px;
}

.offer-card{
min-height:420px;
}

.offer-overlay{
padding:20px;
}

.offer-overlay h3{
font-size:22px;
}

.offer-actions{
flex-direction:column;
}

.offer-btn{
width:100%;
}

}