/* ===== COUNTRY PAGE CLEAN DESIGN ===== */

.container{
max-width:1200px;
margin:auto;
padding:20px;
}

/* ===== LAYOUT ===== */

.layout{
display:flex;
gap:30px;
max-width:1200px;
margin:20px auto; /* بدل 30px */
padding:0 20px;
align-items:flex-start;
}

/* ===== SIDEBAR ===== */

.sidebar{
width:240px;
background:#fff;
padding:20px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
position:sticky;
margin-top:10px;
top:20px;
}

.sidebar h3{
margin-bottom:15px;
font-size:18px;
color:#222;
}

.sidebar a{
display:block;
padding:10px 12px;
margin-bottom:8px;
text-decoration:none;
color:#444;
border-radius:8px;
transition:0.2s;
font-size:14px;
}

.sidebar a:hover{
background:#556B00;
color:#fff;
}

/* ===== MAIN CONTENT ===== */

.main-content{
flex:1;
max-width:900px;
margin:auto;
}

/* ===== TITLE ===== */

.main-content h1{
text-align:center;
margin-bottom:10px;
margin-top:10px;
font-size:28px;
}

.page-intro{
text-align:center;
color:#666;
margin-bottom:25px;
font-size:15px;
}

/* ===== PRAYER BOX ===== */

.simple-box{
background:#fff;
padding:25px;
margin:20px auto;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
max-width:850px;
text-align:center;
}

.simple-box h2{
margin-bottom:15px;
font-size:20px;
}

/* ===== GRID ===== */

.simple-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:12px;
margin-top:20px;
}

.simple-grid div{
background:#f5f5f5;
padding:14px;
border-radius:12px;
transition:0.25s;
font-size:14px;
}

.simple-grid div strong{
display:block;
margin-top:5px;
font-size:16px;
}

.simple-grid div:hover{
background:#556B00;
color:#fff;
transform:translateY(-3px);
}

/* ===== SECTION TITLE ===== */

.main-content h2{
margin-top:40px;
font-size:22px;
text-align:center;
}

/* ===== CARDS (CITIES / COUNTRIES) ===== */

.countries-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:18px;
margin-top:25px;
}

.country-card{
background:#fff;
padding:20px;
border-radius:16px;
text-align:center;
text-decoration:none;
color:#333;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.25s;
display:block;
}

.country-card span{
font-size:22px;
display:block;
margin-bottom:6px;
}

.country-card strong{
font-size:15px;
}

.country-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 30px rgba(0,0,0,0.15);
background:#556B00;
color:#fff;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

.layout{
flex-direction:column;
gap:20px;
}

.sidebar{
width:100%;
position:static;
}

/* عنوان */
.main-content h1{
font-size:22px;
}

/* الكارت */
.simple-box{
padding:18px;
}

/* الصلوات */
.simple-grid{
grid-template-columns:repeat(2,1fr);
}

/* المدن (أهم تعديل) */
.countries-grid{
grid-template-columns:repeat(2,1fr);
gap:12px;
}

.country-card{
padding:15px;
font-size:14px;
}

}