/* ========================= */
/* RESET */
/* ========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#003F8A;
    color:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* ========================= */
/* LOADER */
/* ========================= */

#loader{
    position:fixed;
    inset:0;
    z-index:999999;
    background:#003F8A;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.8s;
}

.loader-content{
    text-align:center;
}

.loader-logo{
    width:350px;
    margin:auto;
    margin:0 auto 8px auto;
}

.loader-content{
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.loader-bar{
    width:320px;
    height:10px;
    background:rgba(255,255,255,.15);
    border-radius:50px;
    overflow:hidden;
     margin-top:-10px;
}

.loader-progress{
    width:0%;
    height:100%;
    background:linear-gradient(
    90deg,
    #8CC63F,
    #7DBA2F,
    #0A5BB5
    );
}

/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;
    padding:0 6%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:999;
    backdrop-filter:blur(18px);
    background:rgba(0,43,109,.70);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.logo img{
    width:170px;
    transition:.4s;
}

.logo img:hover{
    transform:scale(1.05);
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    color:#fff;
    font-weight:500;
    transition:.4s;
    position:relative;
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#8CC63F;
    transition:.4s;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a:hover{
    color:#8CC63F;
}

/* ========================= */
/* HAMBURGER */
/* ========================= */

.hamburger{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
}

.hamburger span{
    width:30px;
    height:3px;
    background:#fff;
    border-radius:10px;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-slider{
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:1.2s;
}

.slide.active{
    opacity:1;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
    z-index:1;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:3;
    text-align:center;
    width:90%;
    max-width:900px;
}


.hero-content h1{
    font-size:4rem;
    font-weight:800;
    margin-bottom:20px;
    line-height:1.1;
}

.hero-content p{
    font-size:1.2rem;
    color:#f5f5f5;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.btn-primary{
    padding:16px 35px;
    background:#8CC63F;
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(140,198,63,.35);
}

.btn-secondary{
    padding:16px 35px;
    border:2px solid #fff;
    border-radius:50px;
    color:#fff;
    transition:.4s;
}

.btn-secondary:hover{
    background:#fff;
    color:#003F8A;
}

/* ========================= */
/* INFO SECTION */
/* ========================= */

.info-section{
    padding:120px 8%;
    background:
    linear-gradient(
    rgba(0,0,0,.60),
    rgba(0,0,0,.60)
    ),
    url("img/mekan1_11zon.webp");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}


.info-box{
    max-width:900px;
}

.badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#8CC63F;
    margin-bottom:25px;
    font-size:.9rem;
    font-weight:600;
}

.info-box h2{
    font-size:3rem;
    margin-bottom:25px;
}

.info-box p{
    color:#ddd;
    line-height:1.9;
    margin-bottom:20px;
    font-size:1.05rem;
}

/* ========================= */
/* SECTION TITLE */
/* ========================= */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#8CC63F;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    margin-top:15px;
    font-size:3rem;
}

/* ========================= */
/* PRODUCT BOX */
/* ========================= */

.product-box{
    padding:120px 8%;
}

.product-wrapper{
    display:flex;
    align-items:center;
    gap:70px;
}

.reverse{
    flex-direction:row-reverse;
}

.product-image{
    flex:1.3;
}

.product-image img{
    border-radius:30px;
    width:100%;
    height:550px;
    object-fit:cover;

    box-shadow:
    0 20px 60px rgba(0,0,0,.30);
}

.product-content{
    flex:1;
}

.product-content h3{
    font-size:1.5rem;
    margin-bottom:25px;
}

.product-content p{
    line-height:1.9;
    color:#ddd;
    margin-bottom:30px;
}


/* ========================= */
/* PRODUCT FEATURES */
/* ========================= */

.product-content ul{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.product-content ul li{
    position:relative;
    padding-left:35px;
    font-size:1rem;
    color:#f5f5f5;
}

.product-content ul li::before{
    content:'✓';
    position:absolute;
    left:0;
    top:0;
    color:#8CC63F;
    font-weight:700;
    font-size:1.1rem;
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer{
    background:#002B6D;
    
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    padding:80px 0 50px;

    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:50px;
}

.footer-logo img{
    width:180px;
    margin-bottom:20px;
}

.footer-logo p{
    color:#d8d8d8;
    line-height:1.8;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3{
    margin-bottom:25px;
    font-size:1.3rem;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    color:#ddd;
    margin-bottom:12px;
    transition:.3s;
}
.footer-links li{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-links a:hover{
    color:#8CC63F;
    padding-left:10px;
}

.footer-contact p{
    margin-bottom:15px;
    color:#ddd;
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-contact i{
    color:#8CC63F;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.4s;
}

.social-icons a:hover{
    background:#8CC63F;
    transform:translateY(-8px);
}

.social-icons i{
    font-size:1.2rem;
}

/* ========================= */
/* COPYRIGHT */
/* ========================= */

.copyright{
    border-top:1px solid rgba(255,255,255,.08);

    padding:25px 8%;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.copyright p{
    color:#cfcfcf;
}

.copyright a{
    color:#8CC63F;
    font-weight:600;
    transition:.3s;
}

.copyright a:hover{
    color:#fff;
}

/* ========================= */
/* SCROLL ANIMATION */
/* ========================= */

.fade-up{
    opacity:0;
    transform:translateY(60px);
    transition:1s;
}

.fade-up.active{
    opacity:1;
    transform:translateY(0);
}

/* ========================= */
/* PREMIUM HOVER EFFECT */
/* ========================= */

.product-image img,
.info-box,
.footer-container > div{
    transition:.5s;
}

.product-image img:hover{
    transform:scale(1.03);
}

.info-box:hover{
    transform:translateY(-8px);
}

.footer-container > div:hover{
    transform:translateY(-5px);
}

/* ========================= */
/* CUSTOM SCROLLBAR */
/* ========================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#002B6D;
}

::-webkit-scrollbar-thumb{
    background:#8CC63F;
    border-radius:50px;
}

::-webkit-scrollbar-thumb:hover{
    background:#7DBA2F;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:992px){

    .hero-content h1{
        font-size:3rem;
    }

    .product-wrapper{
        flex-direction:column;
    }

    .reverse{
        flex-direction:column;
    }

    .product-image img{
        height:420px;
    }

    .info-box h2{
        font-size:2.4rem;
    }
}

/* ========================= */
/* TABLET */
/* ========================= */

@media(max-width:768px){

    


    .navbar{
        height:80px;
    }

    .logo img{
        width:140px;
    }

    .hamburger{
        display:flex;
        z-index:1001;
    }

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;

        width:280px;
        height:100vh;

        background:#002B6D;

        flex-direction:column;
        justify-content:center;
        align-items:center;

        transition:.5s;
    }

    .nav-links.active{
        right:0;
    }

    .hero-content h1{
        font-size:2.5rem;
    }

    .hero-content p{
        font-size:1rem;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .section-title h2{
        font-size:2.3rem;
    }

    .product-content h3{
        font-size:2.2rem;
    }

    .info-box h2{
        font-size:2rem;
    }

    .copyright{
        flex-direction:column;
        text-align:center;
    }
}

.product-box{
    padding:60px 8%;
}

.product-wrapper{
    gap:35px;
}

.section-title{
    margin-bottom:35px;
}
/* ========================= */
/* SMALL MOBILE */
/* ========================= */

@media(max-width:576px){

    .loader-bar{
        width:260px;
    }

    .hero-content h1{
        font-size:2rem;
    }

    .hero-content p{
        font-size:.95rem;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:260px;
        text-align:center;
    }

    .section-title h2{
        font-size:1.9rem;
    }

    .product-content h3{
        font-size:1.8rem;
    }

    .product-image img{
        height:320px;
    }

    .footer-container{
        text-align:center;
    }

    .footer-contact p{
        justify-content:center;
    }

    .social-icons{
        justify-content:center;
    }
}

/* ========================= */
/* FLOAT EFFECT */
/* ========================= */

@keyframes float {

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

.loader-logo{
    animation:float 3s ease-in-out infinite;
}

/* ========================= */
/* HERO TEXT ANIMATION */
/* ========================= */

@keyframes heroFade {

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.hero-content h1,
.hero-content p{
    animation:heroFade 1.2s ease;
}

/* ========================= */
/* GLASS EFFECT */
/* ========================= */

.info-box{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(12px);

    padding:50px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.08);
}



.products-page{
    padding:140px 8% 100px;
}

.page-header{
    text-align:center;
    max-width:900px;
    margin:auto;
    margin-bottom:60px;
}

.page-header span{
    color:#8CC63F;
    font-weight:600;
    letter-spacing:2px;
}

.page-header h1{
    font-size:3.5rem;
    margin:20px 0;
}

.page-header p{
    color:#d9d9d9;
    line-height:1.8;
}

.product-filter{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:50px;
    flex-wrap:wrap;
}

.filter-btn{
    border:none;
    padding:12px 25px;
    border-radius:50px;
    cursor:pointer;
    background:#0A5BB5;
    color:white;
}

.filter-btn.active{
    background:#8CC63F;
}

.products-grid{
    display:grid;
    grid-template-columns:
    repeat(4,1fr);
    gap:30px;
}

.product-card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(10px);
    border-radius:25px;
    overflow:hidden;
    transition:.4s;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-image{
    height:250px;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.product-content{
    padding:25px;
}

.product-category{
    display:inline-block;
    background:#8CC63F;
    color:white;
    padding:7px 15px;
    border-radius:30px;
    font-size:.8rem;
}

.product-content h3{
    margin:15px 0;
}

.product-content p{
    color:#d7d7d7;
    line-height:1.7;
}

.order-btn{
    display:inline-block;
    margin-top:auto;
    background:#8CC63F;
    color:white;
    padding:12px 24px;
    border-radius:50px;
    transition:.4s;
   
}

.order-btn:hover{
    transform:translateY(-3px);
}

/* TABLET */

@media(max-width:992px){

    .products-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

}

/* MOBİL */

@media(max-width:768px){

    .page-header h1{
        font-size:2.3rem;
    }

     .products-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

}


@media(max-width:768px){

    .product-image{
        height:180px;
    }

    .product-content{
        padding:15px;
    }

    .product-content h3{
        font-size:1rem;
    }

    .product-content p{
        font-size:.85rem;
        line-height:1.5;
    }

    .order-btn{
        padding:10px 15px;
        font-size:.85rem;
    }

}



/* ===================================== */
/* ABOUT HERO */
/* ===================================== */

.about-hero{
    height:70vh;

    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.65)
    ),
    url("img/mekan2.jpeg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:0 20px;
     position:relative;
    overflow:hidden;
}

.about-hero span{
    color:#8CC63F;
    font-weight:600;
    letter-spacing:3px;
}

.about-hero h1{
    font-size:4rem;
    margin:20px 0;
}

.about-hero p{
    max-width:700px;
    margin:auto;
    color:#e5e5e5;
    line-height:1.8;
}

/* ===================================== */
/* COMPANY STORY */
/* ===================================== */

.company-story{
    padding:120px 8%;

    display:flex;
    align-items:center;
    gap:80px;
}

.story-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.story-image img{
    width:500px;
    max-width:100%;
}

.story-content{
    flex:1;
}

.story-content span{
    color:#8CC63F;
    font-weight:600;
    letter-spacing:2px;
}

.story-content h2{
    font-size:3rem;
    margin:20px 0;
}

.story-content p{
    color:#d7d7d7;
    line-height:1.9;
    margin-bottom:20px;
}

/* ===================================== */
/* MISSION VISION */
/* ===================================== */

.mission-vision{
    padding:0 8% 120px;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.mv-card{
    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:50px;

    backdrop-filter:blur(12px);

    transition:.4s;
}

.mv-card:hover{
    transform:translateY(-10px);
}

.mv-card .icon{
    font-size:3rem;
    margin-bottom:20px;
}

.mv-card h3{
    margin-bottom:20px;
    font-size:2rem;
}

.mv-card p{
    color:#d7d7d7;
    line-height:1.8;
}

/* ===================================== */
/* WHY US */
/* ===================================== */

.why-us{
    padding:120px 8%;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:rgba(255,255,255,.05);

    padding:35px;

    border-radius:20px;

    text-align:center;

    transition:.4s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card h3{
    margin-bottom:15px;
    color:#8CC63F;
}

.why-card p{
    color:#d7d7d7;
    line-height:1.7;
}

/* ===================================== */
/* STATS */
/* ===================================== */

.stats-section{
    padding:100px 8%;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:30px;

    background:#002B6D;
}

.stat-box{
    text-align:center;
}

.stat-box h2{
    font-size:3.5rem;
    color:#8CC63F;
}

.stat-box span{
    color:#fff;
}

/* ===================================== */
/* PROCESS */
/* ===================================== */

.process-section{
    padding:120px 8%;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-card{
    background:rgba(255,255,255,.05);

    padding:40px;

    border-radius:20px;

    text-align:center;
}

.process-card h3{
    font-size:3rem;
    color:#8CC63F;
    margin-bottom:15px;
}

.process-card h4{
    margin-bottom:15px;
}

.process-card p{
    color:#d7d7d7;
}

/* ===================================== */
/* QUALITY */
/* ===================================== */

.quality-section{

    padding:140px 8%;

    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.65)
    ),
    url("img/mekan1.jpeg");

    background-size:cover;
    background-position:center;

    text-align:center;
}

.quality-content{
    max-width:900px;
    margin:auto;
}

.quality-content span{
    color:#8CC63F;
    font-weight:600;
}

.quality-content h2{
    font-size:3rem;
    margin:25px 0;
}

.quality-content p{
    color:#e0e0e0;
    line-height:1.9;
}

/* ===================================== */
/* CTA */
/* ===================================== */

.cta-section{
    padding:120px 8%;

    text-align:center;
}

.cta-section h2{
    font-size:3rem;
    margin-bottom:20px;
}

.cta-section p{
    color:#d7d7d7;
    margin-bottom:35px;
}

.cta-section a{
    display:inline-block;

    padding:16px 35px;

    background:#8CC63F;

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.4s;
}

.cta-section a:hover{
    transform:translateY(-5px);
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:992px){

    .company-story{
        flex-direction:column;
        text-align:center;
    }

    .mission-vision{
        grid-template-columns:1fr;
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats-section{
        grid-template-columns:repeat(2,1fr);
    }

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .about-hero h1{
        font-size:2.5rem;
    }

    .story-content h2{
        font-size:2.2rem;
    }

    .quality-content h2{
        font-size:2.2rem;
    }

    .cta-section h2{
        font-size:2.2rem;
    }

    .why-grid,
    .stats-section,
    .process-grid{
        grid-template-columns:1fr;
    }

}



/* ========================= */
/* INDEX PRODUCT IMAGES (MEYVE / SEBZE) */
/* ========================= */

.product-imgs{
    flex:1.3;
    height:550px;
}

.product-imgs img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.30);
    display:block;
    transition:.5s;
}

.product-imgs img:hover{
    transform:scale(1.03);
}



/* ========================= */
/* SERVICES HERO */
/* ========================= */

.services-hero{
    height:70vh;
    position:relative;
    background:url("img/sebzetezgah2.jpeg") center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:0 20px;
}

.services-hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.services-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
}

.services-hero-content span{
    color:#8CC63F;
    letter-spacing:2px;
    font-weight:600;
}

.services-hero-content h1{
    font-size:3.5rem;
    margin:20px 0;
}

.services-hero-content p{
    color:#e5e5e5;
    line-height:1.8;
    margin-bottom:30px;
}

/* BUTTON */

.service-btn{
    display:inline-block;
    padding:14px 30px;
    background:#8CC63F;
    color:#fff;
    border-radius:50px;
    transition:.4s;
}

.service-btn:hover{
    transform:translateY(-5px);
}

/* ========================= */
/* SERVICE SECTION */
/* ========================= */

.service-section{
    max-width:1200px;
    margin:0 auto;
    padding:120px 8%;
}

.service-section.reverse{
    flex-direction:row-reverse;
}

.service-image{
    margin-bottom:40px;
}

.service-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:30px;
    display:block;
}


.service-content{
    max-width:900px;
}

.service-content h2{
    font-size:2.8rem;
    margin-bottom:20px;
}

.service-content p{
    line-height:1.8;
    color:#ddd;
    margin-bottom:20px;
}

.service-content ul{
    margin-bottom:25px;
}

.service-content ul li{
    margin-bottom:10px;
    color:#fff;
    padding-left:20px;
    position:relative;
}

.service-content ul li::before{
    content:"✓";
    color:#8CC63F;
    position:absolute;
    left:0;
}

/* ========================= */
/* SERVICE CARDS */
/* ========================= */

.service-cards{
    padding:120px 8%;
    background:#002B6D;
}

.cards-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.card{
    background:rgba(255,255,255,.05);
    padding:30px;
    border-radius:20px;
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    color:#8CC63F;
    margin-bottom:10px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .service-section{
        flex-direction:column;
    }

    .cards-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .services-hero h1{
        font-size:2.3rem;
    }

    .cards-grid{
        grid-template-columns:1fr;
    }
}



/* ========================= */
/* CONTACT HERO */
/* ========================= */

.contact-hero{
    height:60vh;
    position:relative;
    background:url("img/mekan1_11zon.webp") center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.contact-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.contact-content{
    position:relative;
    z-index:2;
    max-width:800px;
}

.contact-content span{
    color:#8CC63F;
    font-weight:600;
    letter-spacing:2px;
}

.contact-content h1{
    font-size:3rem;
    margin:20px 0;
}

/* ========================= */
/* CONTACT GRID */
/* ========================= */

.contact-section{
    padding:120px 8%;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.contact-card{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:45px;

    transition:.4s;
}

.contact-card:hover{
    transform:translateY(-8px);
}

.highlight-card{
    border:1px solid rgba(140,198,63,.35);
}

.contact-icon{

    width:80px;
    height:80px;

    border-radius:50%;

    background:#8CC63F;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:25px;
}

.contact-icon i{
    font-size:2rem;
    color:white;
}
.contact-card h3{
    font-size:2rem;
    margin-bottom:20px;
}


.contact-card h2{
    margin-bottom:20px;
    color:#8CC63F;
}

.contact-card p{
    color:#ddd;
    line-height:1.9;
    margin-bottom:25px;
}
.contact-info{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:30px;
}

.info-item{
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.info-item i{
    color:#8CC63F;
    margin-top:4px;
}

.support-list{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-bottom:30px;
}

.support-list li{
    color:#f5f5f5;
}

.contact-btn{

    display:inline-block;

    background:#8CC63F;

    color:white;

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;
}

.contact-btn:hover{
    transform:translateY(-4px);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:992px){

    .contact-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .contact-section{
        padding:80px 6%;
    }

    .contact-card{
        padding:30px;
        text-align:center;
    }

    .contact-icon{
        margin:0 auto 25px;
    }

    .info-item{
        justify-content:center;
        text-align:left;
    }

    .contact-card h3{
        font-size:1.7rem;
    }

}

@media(max-width:576px){

    .contact-card{
        padding:25px;
    }

    .contact-card h3{
        font-size:1.5rem;
    }

    .info-item{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:8px;
    }

}

/* ========================= */
/* BUTTON */
/* ========================= */

.contact-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 30px;
    background:#8CC63F;
    color:#fff;
    border-radius:50px;
    transition:.4s;
}

.contact-btn:hover{
    transform:translateY(-5px);
}

/* ========================= */
/* MAP */
/* ========================= */

.map-section{
    padding:0 8% 120px;
}

.map-section iframe{
    width:100%;
    height:400px;
    border:0;
    border-radius:20px;
}

/* ========================= */
/* FLOAT SOCIAL */
/* ========================= */

.floating-social{
    position:fixed;
    left:20px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

.floating-social a{
    width:55px;
    height:55px;
    background:#002B6D;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:1.3rem;
    transition:.4s;
}

.floating-social a:hover{
    background:#8CC63F;
    transform:translateX(8px);
}

/* ========================= */
/* LINKS FIX (NO BLUE UNDERLINE) */
/* ========================= */

a{
    color:inherit;
    text-decoration:none;
}

.contact-card p strong{
    color:#fff;
}




.floating-container{
    position:fixed;
    inset:0;
    overflow:hidden;
    z-index:0;
    pointer-events:none;
}

/* ICON */
.floating-item{
    position:absolute;
    width:26px;
    height:26px;

    opacity:.1.2; /* daha şeffaf */

    animation:floatDown linear infinite;

    pointer-events:none;

    filter:drop-shadow(0 0 2px rgba(140,198,63,.15));
}

/* hareket */
@keyframes floatDown{
    from{
        transform:translateY(-120px) rotate(0deg);
    }
    to{
        transform:translateY(110vh) rotate(360deg);
    }
}

/* en alta bunu ekle */

@media(max-width:768px){

    .product-card{
        border-radius:18px;
    }

    .product-image{
        height:140px;
    }

    .product-content{
        padding:12px;
    }

    .product-category{
        font-size:.65rem;
        padding:5px 10px;
    }

    .product-content h3{
        font-size:1rem;
        margin:10px 0;
        line-height:1.3;
    }

    .product-content p{
        font-size:.8rem;
        line-height:1.4;
        margin-bottom:12px;
    }

    .order-btn{
        width:100%;
        text-align:center;
        padding:10px;
        font-size:.8rem;
        margin-top:10px;
    }

}




/* ========================= */
/* PRODUCT SEARCH */
/* ========================= */

.search-wrapper{
    max-width:500px;
    margin:0 auto 40px;
    position:relative;
}

.search-wrapper i{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#8CC63F;
    font-size:1rem;
}

.search-wrapper input{
    width:100%;
    height:58px;

    background:rgba(255,255,255,.05);
    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:50px;

    padding:0 20px 0 50px;

    color:#fff;
    font-size:1rem;

    outline:none;

    transition:.3s;
}

.search-wrapper input:focus{
    border-color:#8CC63F;
    box-shadow:0 0 20px rgba(140,198,63,.15);
}

.search-wrapper input::placeholder{
    color:#cfcfcf;
}





/* ===================================== */
/* HAMİLE MEYVESİ HERO */
/* ===================================== */

.hamile-hero{
    min-height:100vh;
      box-sizing:border-box;
    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.65)
    ),
    url("img/mekan1_11zon.webp");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 8%;

    position:relative;
}

.hero-content{
    max-width:900px;
}

.hero-content span{
    color:#8CC63F;
    font-weight:600;
    letter-spacing:3px;
}

.hero-content h1{
    font-size:4rem;
    line-height:1.2;
    margin:25px 0;
}

.hero-content p{
    color:#e5e5e5;
    line-height:1.9;
    font-size:1.1rem;
    max-width:750px;
    margin:auto;
}

.hero-buttons{
    margin-top:40px;

    display:flex;
    justify-content:center;
    gap:20px;
}

.btn-primary,
.btn-secondary{
    display:inline-block;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;
}

.btn-primary{
    background:#8CC63F;
    color:white;
}

.btn-secondary{
    border:2px solid #8CC63F;
    color:white;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-5px);
}

/* ===================================== */
/* HAKKINDA */
/* ===================================== */

.hamile-about{
    padding:120px 8%;

    display:flex;
    align-items:center;

    gap:70px;
}

.about-image,
.about-content{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:25px;
}

.about-content span{
    color:#8CC63F;
    font-weight:600;
    letter-spacing:2px;
}

.about-content h2{
    font-size:3rem;
    line-height:1.2;
    margin:20px 0;
}

.about-content p{
    color:#d7d7d7;
    line-height:2;
    margin-bottom:20px;
}

/* ===================================== */
/* SECTION TITLE */
/* ===================================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#8CC63F;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    font-size:3rem;
    margin-top:15px;
}

/* ===================================== */
/* ÜRÜN GALERİSİ */
/* ===================================== */

.fruit-gallery{
    padding:120px 8%;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.fruit-card{
    background:rgba(255,255,255,.05);

    border-radius:25px;

    overflow:hidden;

    backdrop-filter:blur(10px);

    transition:.4s;
}

.fruit-card:hover{
    transform:translateY(-10px);
}

.fruit-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.fruit-card h3{
    text-align:center;
    padding:20px;
    font-size:1.2rem;
}

/* ===================================== */
/* AVANTAJLAR */
/* ===================================== */

.advantages{
    padding:120px 8%;
}

.advantages-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.adv-card{
    background:rgba(255,255,255,.05);

    border-radius:25px;

    padding:35px;

    text-align:center;

    backdrop-filter:blur(10px);

    transition:.4s;
}

.adv-card:hover{
    transform:translateY(-10px);
}

.adv-card h3{
    color:#8CC63F;
    margin-bottom:15px;
}

.adv-card p{
    color:#d7d7d7;
    line-height:1.8;
}

/* ===================================== */
/* SÜREÇ */
/* ===================================== */

.process{
    padding:120px 8%;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-box{
    background:rgba(255,255,255,.05);

    border-radius:25px;

    padding:40px;

    text-align:center;

    backdrop-filter:blur(10px);

    transition:.4s;
}

.process-box:hover{
    transform:translateY(-10px);
}

.process-box span{
    font-size:3rem;
    color:#8CC63F;
    font-weight:700;
}

.process-box h3{
    margin-top:15px;
}

/* ===================================== */
/* TÜRKİYE GÖNDERİM */
/* ===================================== */

.shipping-section{
    padding:140px 8%;

    background:
    linear-gradient(
    rgba(0,0,0,.70),
    rgba(0,0,0,.70)
    ),
    url("img/turkiye-harita.webp");

    background-size:cover;
    background-position:center;

    text-align:center;
}

.shipping-section h2{
    font-size:3rem;
    margin-bottom:25px;
}

.shipping-section p{
    max-width:800px;
    margin:auto;

    color:#e0e0e0;

    line-height:2;
}

/* ===================================== */
/* CTA */
/* ===================================== */

.hamile-cta{
    padding:140px 8%;

    text-align:center;

    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.65)
    ),
    url("img/sebzetezgah2.jpeg");

    background-size:cover;
    background-position:center;
}

.hamile-cta h2{
    font-size:3rem;

    max-width:900px;

    margin:auto;
    margin-bottom:25px;

    line-height:1.3;
}

.hamile-cta p{
    max-width:700px;

    margin:auto;
    margin-bottom:35px;

    color:#e5e5e5;

    line-height:1.9;
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:992px){

    .hamile-about{
        flex-direction:column;
        text-align:center;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .advantages-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .hamile-hero{
        min-height:100vh;
        height:auto;
        padding:120px 20px 80px;
        display:flex;
        align-items:center;
    }
    
    .hero-content{
        width:100%;
        text-align:center;
    }

    .hero-content h1{
        font-size:2.5rem;
    }

    .hero-content p{
        font-size:.95rem;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .about-content h2{
        font-size:2rem;
    }

    .section-title h2{
        font-size:2rem;
    }

    .shipping-section h2{
        font-size:2rem;
    }

    .hamile-cta h2{
        font-size:2rem;
    }

    .gallery-grid,
    .advantages-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    .fruit-card img{
        height:220px;
    }

}



