/* ==========================================
RESET
========================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:"Cairo",sans-serif;
background:#F7F8FB;
color:#1F2937;
line-height:1.8;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
color:inherit;
}

.wrapper{
width:min(1320px,92%);
margin:auto;
}

section{
padding:90px 0;
overflow:hidden;
}

/* ==========================================
SECTION TITLE
========================================== */

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title span{
display:inline-block;
padding:8px 18px;
background:#EAF8ED;
color:#2E7D32;
border-radius:999px;
font-size:14px;
font-weight:700;
margin-bottom:16px;
}

.section-title h2{
font-size:46px;
font-weight:900;
color:#111827;
margin-bottom:15px;
}

.section-title p{
font-size:18px;
color:#6B7280;
max-width:650px;
margin:auto;
line-height:1.9;
}

/* ==========================================
HERO
========================================== */

.hero{
min-height:100vh;
display:flex;
align-items:center;
background:#F7F8FB;
}

.hero-grid{
display:grid;
grid-template-columns:1fr;
align-items:center;
justify-items:center;
text-align:center;
}

.logo{
width:240px;
margin-bottom:30px;
}

.badge{
display:inline-flex;
align-items:center;
gap:10px;
padding:12px 22px;
background:#EAF8ED;
border-radius:999px;
color:#2E7D32;
font-weight:700;
margin-bottom:30px;
}

.hero-content h1{
font-size:64px;
font-weight:900;
line-height:1.2;
color:#111827;
margin-bottom:25px;
}

.hero-content p{
font-size:21px;
color:#6B7280;
max-width:760px;
margin:auto;
line-height:2;
}
/* ==========================================
GALLERY
========================================== */

.gallery{
background:#fff;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:22px;
margin-top:40px;
}

.gallery-grid img{
width:100%;
height:320px;
object-fit:cover;
border-radius:24px;
cursor:pointer;
transition:.35s;
box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.gallery-grid img:hover{
transform:translateY(-8px) scale(1.02);
box-shadow:0 25px 55px rgba(0,0,0,.12);
}

/* ==========================================
FEATURES
========================================== */

.features{
background:#F7F8FB;
}

.features-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.feature-card{
background:#fff;
padding:35px;
border-radius:24px;
text-align:center;
border:1px solid #ECECEC;
box-shadow:0 12px 30px rgba(0,0,0,.06);
transition:.35s;
}

.feature-card:hover{
transform:translateY(-8px);
border-color:#2E7D32;
box-shadow:0 22px 45px rgba(0,0,0,.10);
}

.icon{
width:82px;
height:82px;
margin:0 auto 22px;
display:flex;
align-items:center;
justify-content:center;
background:#EAF8ED;
border-radius:22px;
font-size:34px;
color:#2E7D32;
}

.feature-card h3{
font-size:25px;
font-weight:800;
color:#111827;
margin-bottom:12px;
}

.feature-card p{
font-size:16px;
color:#6B7280;
line-height:1.9;
}

/* ==========================================
STATS
========================================== */

.stats{
background:#fff;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.stat-card{
background:#F7F8FB;
padding:40px 30px;
border-radius:24px;
text-align:center;
border:1px solid #ECECEC;
box-shadow:0 10px 30px rgba(0,0,0,.05);
transition:.35s;
}

.stat-card:hover{
transform:translateY(-8px);
box-shadow:0 22px 45px rgba(0,0,0,.10);
}

.stat-card i{
font-size:38px;
color:#2E7D32;
margin-bottom:18px;
}

.stat-card h3{
font-size:42px;
font-weight:900;
color:#111827;
margin-bottom:10px;
}

.stat-card span{
font-size:18px;
color:#6B7280;
}

/* ==========================================
CONTACT
========================================== */

.contact{
background:#F7F8FB;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.contact-card{
background:#fff;
padding:35px;
border-radius:24px;
text-align:center;
border:1px solid #ECECEC;
box-shadow:0 10px 30px rgba(0,0,0,.05);
transition:.35s;
}

.contact-card:hover{
transform:translateY(-8px);
box-shadow:0 22px 45px rgba(0,0,0,.10);
}

.contact-card h3{
font-size:28px;
font-weight:800;
color:#111827;
margin-bottom:10px;
}

.contact-card p{
font-size:15px;
color:#6B7280;
margin-bottom:25px;
}

.contact-links{
display:flex;
justify-content:center;
gap:15px;
}

.contact-links a{
width:58px;
height:58px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:24px;
color:#fff;
transition:.3s;
}

.call-icon{
background:#111827;
}

.whatsapp-icon{
background:#25D366;
}

.contact-links a:hover{
transform:scale(1.1);
}
/* ==========================================
LOCATION
========================================== */

.location{
background:#fff;
}

.location .features-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
margin-top:40px;
}

.location-card{
background:#F7F8FB;
padding:35px;
border-radius:24px;
text-align:center;
border:1px solid #ECECEC;
box-shadow:0 10px 30px rgba(0,0,0,.05);
transition:.35s;
}

.location-card:hover{
transform:translateY(-8px);
box-shadow:0 22px 45px rgba(0,0,0,.10);
}

.location-card i{
font-size:42px;
color:#2E7D32;
margin-bottom:20px;
}

.location-card h3{
font-size:28px;
font-weight:800;
margin-bottom:12px;
color:#111827;
}

.location-card p{
color:#6B7280;
margin-bottom:22px;
line-height:1.8;
}

.location-card a{
display:inline-block;
padding:14px 34px;
background:#2E7D32;
color:#fff;
border-radius:14px;
font-weight:700;
transition:.3s;
}

.location-card a:hover{
background:#25682A;
transform:translateY(-3px);
}

/* ==========================================
FOOTER
========================================== */

footer{
background:#111827;
color:#fff;
padding:70px 0;
text-align:center;
}

.footer-logo{
width:220px;
margin:0 auto 25px;
}

.footer-content h3{
font-size:30px;
margin-bottom:12px;
}

.footer-content p{
color:#D1D5DB;
line-height:2;
margin-bottom:15px;
}

.footer-content small{
color:#9CA3AF;
}

/* ==========================================
FLOATING BUTTON
========================================== */

.floating-contact{
position:fixed;
right:20px;
bottom:20px;
display:flex;
align-items:center;
gap:10px;
padding:15px 22px;
background:#2E7D32;
color:#fff;
border-radius:999px;
font-weight:700;
box-shadow:0 15px 35px rgba(0,0,0,.18);
transition:.3s;
z-index:9999;
}

.floating-contact:hover{
background:#25682A;
transform:translateY(-4px);
}

.floating-contact i{
font-size:22px;
}
/* ==========================================
RESPONSIVE
========================================== */

@media (max-width:991px){

.hero{
min-height:auto;
padding:80px 0;
}

.hero-grid,
.features-grid,
.stats-grid,
.contact-grid,
.location .features-grid{
grid-template-columns:1fr;
}

.gallery-grid{
grid-template-columns:1fr;
}

.gallery-grid img{
height:260px;
}

.hero-content{
text-align:center;
}

.logo{
margin:0 auto 25px;
}

.badge{
margin:0 auto 25px;
}

.hero-content h1{
font-size:44px;
}

.hero-content p{
font-size:18px;
}

.section-title h2{
font-size:36px;
}

.location-card,
.feature-card,
.contact-card,
.stat-card{
padding:30px;
}

}

@media (max-width:768px){

section{
padding:70px 0;
}

.hero-content h1{
font-size:36px;
line-height:1.3;
}

.hero-content p{
font-size:17px;
}

.section-title h2{
font-size:30px;
}

.section-title p{
font-size:16px;
}

.gallery-grid img{
height:220px;
}

.logo{
width:180px;
}

.floating-contact{
width:60px;
height:60px;
padding:0;
border-radius:50%;
justify-content:center;
}

.floating-contact span{
display:none;
}

.floating-contact i{
margin:0;
font-size:24px;
}

}

@media (max-width:480px){

.wrapper{
width:94%;
}

.hero-content h1{
font-size:30px;
}

.hero-content p{
font-size:16px;
}

.badge{
font-size:13px;
padding:10px 18px;
}

.feature-card h3,
.location-card h3,
.contact-card h3{
font-size:22px;
}

.stat-card h3{
font-size:34px;
}

.location-card a,
.contact-card a{
width:100%;
}

}

/* ==========================================
SMOOTH EFFECTS
========================================== */

.feature-card,
.stat-card,
.contact-card,
.location-card,
.gallery-grid img,
.location-card a,
.contact-links a,
.floating-contact{
will-change:transform;
}

::selection{
background:#2E7D32;
color:#fff;
}