/* ==========================
   HERO
========================== */

.hero{

    min-height:100vh;

    background:#F7F8FB;

}

.container{

    width:100%;

    min-height:100vh;

    display:grid;

    grid-template-columns:45% 55%;

    direction:ltr;

    align-items:center;

}

/* ==========================
   HERO CONTENT
========================== */

.hero-content{

    direction:rtl;

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:90px;

    position:relative;

    z-index:10;

}

.logo{

    width:340px;

    margin-bottom:55px;

    transition:.4s;

}

.logo:hover{

    transform:scale(1.04);

}

.badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    width:max-content;

    padding:12px 24px;

    background:#EAF7EC;

    color:#2E7D32;

    border-radius:50px;

    font-weight:700;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:72px;

    font-weight:900;

    line-height:1.15;

    margin-bottom:22px;

}

.hero-content p{

    font-size:22px;

    color:#666;

    line-height:2;

    margin-bottom:45px;

}

/* ==========================
   STATS
========================== */

.stats{

    display:flex;

    gap:18px;

    margin-bottom:45px;

}

.card{

    flex:1;

    background:#fff;

    border-radius:22px;

    padding:28px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(46,125,50,.18);

}

.card h2{

    color:#2E7D32;

    font-size:38px;

    margin-bottom:10px;

}

.card span{

    color:#777;

    font-size:15px;

}

/* ==========================
   BUTTONS
========================== */

.buttons{

    display:flex;

    gap:18px;

}

.btn{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:18px 34px;

    border-radius:16px;

    font-weight:700;

    transition:.35s;

}

.green{

    background:#2E7D32;

    color:#fff;

}

.white{

    background:#fff;

    color:#111827;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.btn:hover{

    transform:translateY(-5px);

}

/* ==========================
   HERO IMAGE
========================== */

.hero-image{

    position:relative;

    overflow:hidden;

}

.hero-image img{

    width:100%;

    height:100vh;

    object-fit:cover;

    animation:heroZoom 18s ease-in-out infinite alternate;

}

.hero-image::before{

    content:"";

    position:absolute;

    top:0;

    left:-120px;

    width:260px;

    height:100%;

    background:#F7F8FB;

    transform:skewX(-10deg);

    z-index:5;

}

.hero-image::after{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:260px;

    height:100%;

    background:linear-gradient(to right,#F7F8FB 0%,rgba(247,248,251,.95) 18%,rgba(247,248,251,.6) 45%,rgba(247,248,251,0) 100%);

    z-index:6;

}

.shine{

    position:absolute;

    top:0;

    left:180px;

    width:120px;

    height:100%;

    background:linear-gradient(to right,transparent,rgba(255,255,255,.45),transparent);

    filter:blur(28px);

    pointer-events:none;

    z-index:7;

}

@keyframes heroZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}
/* ==========================
   FEATURES
========================== */

.features{

    padding:120px 0;

    background:#fff;

    position:relative;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    color:#2E7D32;

    font-weight:800;

    letter-spacing:1px;

    margin-bottom:10px;

}

.section-title h2{

    font-size:46px;

    font-weight:900;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:24px;

}

.feature-card{

    background:#fff;

    border-radius:24px;

    padding:35px 28px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

    border:1px solid #F1F1F1;

}

.feature-card:hover{

    transform:translateY(-12px);

    border-color:#2E7D32;

    box-shadow:0 30px 65px rgba(46,125,50,.16);

}

.icon{

    width:78px;

    height:78px;

    margin:auto auto 24px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#EDF8EF;

    color:#2E7D32;

    font-size:34px;

    transition:.35s;

}

.feature-card:hover .icon{

    transform:rotate(-8deg) scale(1.08);

}

.feature-card h3{

    font-size:22px;

    margin-bottom:12px;

}

.feature-card p{

    color:#666;

    line-height:1.9;

}

/* ==========================
   GALLERY
========================== */

.gallery{

    padding:120px 0;

    background:#F7F8FB;

}

.gallery-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:22px;

    margin-top:60px;

}

.gallery-grid img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:24px;

    cursor:pointer;

    transition:.45s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.gallery-grid img:first-child{

    grid-row:span 2;

    height:582px;

}

.gallery-grid img:hover{

    transform:scale(1.03);

    box-shadow:0 30px 70px rgba(0,0,0,.16);

}
/* ==========================
   DETAILS
========================== */

.details{

    padding:120px 0;

    background:#F7F8FB;

}

.details-box{

    display:grid;

    grid-template-columns:1fr 1fr 1.4fr;

    gap:0;

    overflow:hidden;

    border-radius:28px;

    background:#fff;

    box-shadow:0 20px 55px rgba(0,0,0,.08);

}

.details-box>div{

    padding:50px;

}

.details-box>div:not(:last-child){

    border-left:1px solid #ECECEC;

}

.price-box,
.center-box{

    text-align:center;

}

.price-box span,
.center-box span{

    color:#777;

    font-size:15px;

}

.price-box h3{

    color:#2E7D32;

    font-size:58px;

    margin:18px 0;

    font-weight:900;

}

.center-box img{

    width:90px;

    margin:0 auto 25px;

}

.center-box h3{

    font-size:48px;

    margin-bottom:10px;

}

.specs-box h3{

    margin-bottom:22px;

    font-size:28px;

}

.specs-box ul{

    list-style:none;

}

.specs-box li{

    padding:14px 0;

    border-bottom:1px dashed #E5E7EB;

    color:#555;

}

.notice{

    margin-top:30px;

    background:#FFF8E7;

    border:1px solid #F5D67C;

    color:#8A6A00;

    border-radius:18px;

    padding:22px;

    text-align:center;

    font-weight:700;

}

/* ==========================
   CONTACT
========================== */

.contact{

    padding:120px 0;

    background:#fff;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

    margin-top:60px;

}

.contact-card{

    background:#fff;

    border-radius:24px;

    padding:45px;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.07);

    transition:.35s;

    border:1px solid transparent;

}

.contact-card:hover{

    transform:translateY(-12px);

    border-color:#2E7D32;

    box-shadow:0 30px 65px rgba(46,125,50,.18);

}

.contact-card h3{

    font-size:34px;

    margin-bottom:25px;

}

.contact-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

}

.contact-buttons a{

    width:62px;

    height:62px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:22px;

    transition:.3s;

}

.phone-btn{

    background:#111827;

}

.whatsapp-btn{

    background:#25D366;

}

.contact-buttons a:hover{

    transform:scale(1.15) rotate(-8deg);

}
/* ==========================
   LOCATION
========================== */

.location{

    padding:120px 0;

    background:#F7F8FB;

}

.location-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;

}

.location-card{

    background:#fff;

    border-radius:24px;

    padding:50px 40px;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    border:1px solid transparent;

    transition:.35s;

}

.location-card:hover{

    transform:translateY(-10px);

    border-color:#2E7D32;

    box-shadow:0 30px 70px rgba(46,125,50,.18);

}

.location-card h3{

    font-size:30px;

    margin-bottom:15px;

}

.location-card p{

    color:#666;

    line-height:2;

    margin-bottom:30px;

}

.location-card a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:18px 34px;

    background:#2E7D32;

    color:#fff;

    border-radius:16px;

    font-weight:700;

    transition:.3s;

}

.location-card a:hover{

    background:#256729;

    transform:translateY(-3px);

}


/* ==========================
   FOOTER
========================== */

footer{

    background:#111827;

    color:#fff;

    padding:90px 0 40px;

}

.footer-content{

    text-align:center;

}

.footer-logo{

    width:240px;

    margin:auto;

    margin-bottom:30px;

}

.footer-content p{

    color:#D1D5DB;

    line-height:2;

    font-size:18px;

    margin-bottom:30px;

}

.footer-content small{

    display:block;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    color:#9CA3AF;

}


/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1200px){

.hero-content{

padding:60px;

}

.hero-content h1{

font-size:58px;

}

.logo{

width:270px;

}

.features-grid{

grid-template-columns:repeat(3,1fr);

}

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.gallery-grid img:first-child{

grid-row:auto;

height:300px;

}

}

@media(max-width:991px){

.container{

grid-template-columns:1fr;

}

.hero-image{

order:-1;

height:420px;

}

.hero-image img{

height:420px;

}

.hero-content{

padding:55px 25px;

text-align:center;

align-items:center;

}

.stats{

flex-direction:column;

width:100%;

}

.buttons{

flex-direction:column;

width:100%;

}

.btn{

width:100%;

}

.features-grid{

grid-template-columns:1fr;

}

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-grid img,

.gallery-grid img:first-child{

height:260px;

}

.details-box{

grid-template-columns:1fr;

}

.details-box>div{

border-left:none;

border-bottom:1px solid #ECECEC;

}

.contact-grid{

grid-template-columns:1fr;

}

.location-grid{

grid-template-columns:1fr;

}

.footer-logo{

width:180px;

}

}

@media(max-width:576px){

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:18px;

}

.badge{

font-size:14px;

}

.card h2{

font-size:30px;

}

.section-title h2{

font-size:34px;

}

}

.gallery-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:22px;

    margin-top:60px;

}