/*==================================================
GUVENC ZEYTINYAG
PRODUCTION.CSS
PART 1
==================================================*/


:root{

    --green:#15452d;
    --green-dark:#0d311f;
    --green-light:#2c7a4b;

    --gold:#d4af37;

    --text:#2b2b2b;

    --gray:#6f7571;

    --bg:#f7f8f5;

    --white:#ffffff;

    --radius:24px;

    --shadow:0 18px 55px rgba(0,0,0,.08);

}


*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}


html{

    scroll-behavior:smooth;

}


body{

    background:var(--bg);

    color:var(--text);

    overflow-x:hidden;

}


.production-page{

    overflow:hidden;

}


.production-page section{

    padding:40px 0;

}


.container{

    max-width:1320px;

    margin:auto;

    padding:0 20px;

}


/*==================================
GENEL
==================================*/

.section-tag{

    display:inline-block;

    padding:12px 24px;

    background:#eef6ea;

    color:var(--green);

    border-radius:50px;

    font-size:15px;

    font-weight:700;

    margin-bottom:22px;

}


.section-title{

    font-size:52px;

    font-weight:900;

    color:var(--green);

    margin-bottom:25px;

    line-height:1.15;

}


.section-desc{

    max-width:760px;

    font-size:18px;

    color:var(--gray);

    line-height:2;

}


/*==================================
HERO
==================================*/

.production-hero{

    position:relative;

    min-height:760px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:

    linear-gradient(

    rgba(10,45,28,.74),

    rgba(10,45,28,.74)

    ),

    url("/static/images/production/hero.jpg");

    background-size:cover;

    background-position:center;

}


.production-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at left,

    rgba(255,255,255,.05),

    transparent 35%),

    radial-gradient(circle at right,

    rgba(212,175,55,.08),

    transparent 35%);

}


.hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

}


.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 26px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    color:#fff;

    border:1px solid rgba(255,255,255,.10);

    margin-bottom:35px;

    font-weight:700;

}


.production-hero h1{

    font-size:72px;

    color:#fff;

    line-height:1.05;

    font-weight:900;

    margin-bottom:28px;

}


.production-hero p{

    color:#edf4ee;

    font-size:20px;

    line-height:2;

}


.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;

    flex-wrap:wrap;

}


.hero-buttons .btn{

    padding:18px 38px;

    border-radius:60px;

    font-weight:700;

    transition:.35s;

}


.hero-buttons .btn-success{

    background:var(--gold);

    border:none;

    color:#222;

}


.hero-buttons .btn-success:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(212,175,55,.35);

}


.hero-buttons .btn-outline-light:hover{

    background:#fff;

    color:var(--green);

}


/*==================================
BREADCRUMB
==================================*/

.production-breadcrumb{

    background:#d6ad24;

    padding:22px 0;

    border-bottom:1px solid #ececec;

}


.production-breadcrumb .container{

    display:flex;

    align-items:center;

    gap:10px;

}


.production-breadcrumb a{

    color:var(--green);

    text-decoration:none;

    font-weight:700;

}


.production-breadcrumb strong{

    color:#222;

}


/*==================================
INTRO
==================================*/

.production-intro{

    background:#fff;

}


.production-intro h2{

    font-size:54px;

    font-weight:900;

    color:var(--green);

    line-height:1.15;

    margin-bottom:30px;

}


.production-intro p{

    color:var(--gray);

    line-height:2;

    font-size:18px;

    margin-bottom:20px;

}


.intro-image{

    position:relative;

}


.intro-image img{

    width:100%;

    height:620px;

    object-fit:cover;

    border-radius:30px;

    background:#dde5da;

    box-shadow:var(--shadow);

    transition:.45s;

}


.intro-image img:hover{

    transform:scale(1.03);

}


.intro-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:45px;

}


.intro-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:22px;

    background:#f6f8f5;

    border-radius:20px;

    transition:.35s;

}


.intro-item:hover{

    transform:translateY(-6px);

    background:#eef6ea;

}


.intro-item i{

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(

    135deg,

    var(--gold),

    #e9c962

    );

    color:#fff;

    font-size:22px;

}


.intro-item span{

    color:var(--green);

    font-size:17px;

    font-weight:700;

}
/*==================================================
PART 2
VIDEO SLIDER + TIMELINE
==================================================*/


/*==================================
VİDEOLAR
==================================*/

.production-videos{

    background:linear-gradient(
    135deg,
    #92b10a,
    #69b309);

}

.production-videos .section-tag{

    display:block;

    width:max-content;

    margin:0 auto 20px;

}

.production-videos .section-title{

    text-align:center;

}

.production-videos .section-desc{

    text-align:center;

    margin:20px auto 70px;

}


.video-slider{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}


.video-card{

    position:relative;

    overflow:hidden;

    background:#fff;

    border-radius:28px;

    box-shadow:0 20px 55px rgba(0,0,0,.08);

    transition:.4s;

}

.video-card:hover{

    transform:translateY(-12px);

}


.video-thumb{

    position:relative;

    overflow:hidden;

}


.video-thumb img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.45s;

}


.video-card:hover img{

    transform:scale(1.08);

}


.video-thumb::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

    rgba(0,0,0,.05),

    rgba(0,0,0,.45)

    );

}


.play-button{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:90px;

    height:90px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:34px;

    z-index:5;

    transition:.35s;

    cursor:pointer;

}


.video-card:hover .play-button{

    background:var(--gold);

    transform:translate(-50%,-50%) scale(1.08);

}


.video-content{

    padding:32px;

}


.video-content h4{

    font-size:26px;

    color:var(--green);

    margin-bottom:18px;

    font-weight:800;

}


.video-content p{

    color:var(--gray);

    line-height:1.9;

}



/*==================================
TIMELINE
==================================*/

.production-timeline{

    background:#ffffff;

}


.production-timeline .section-tag{

    display:block;

    width:max-content;

    margin:0 auto 20px;

}


.production-timeline .section-title{

    text-align:center;

}


.production-timeline .section-desc{

    text-align:center;

    margin:20px auto 80px;

}


.timeline{

    position:relative;

    max-width:1100px;

    margin:auto;

}


.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    width:4px;

    height:100%;

    transform:translateX(-50%);

    background:linear-gradient(

    var(--gold),

    var(--green)

    );

}


.timeline-item{

    position:relative;

    width:50%;

    padding:30px 60px;

    margin-bottom:70px;

}


.timeline-item:nth-child(odd){

    left:0;

    text-align:right;

}


.timeline-item:nth-child(even){

    left:50%;

}


.timeline-number{

    position:absolute;

    width:80px;

    height:80px;

    border-radius:50%;

    background:linear-gradient(

    135deg,

    var(--gold),

    #f0cf66

    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:26px;

    font-weight:900;

    top:35px;

    box-shadow:0 15px 35px rgba(212,175,55,.35);

}


.timeline-item:nth-child(odd) .timeline-number{

    right:-40px;

}


.timeline-item:nth-child(even) .timeline-number{

    left:-40px;

}


.timeline-content{

    background:#fff;

    border-radius:26px;

    padding:35px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.35s;

}


.timeline-content:hover{

    transform:translateY(-8px);

}


.timeline-content h3{

    color:var(--green);

    font-size:30px;

    margin-bottom:18px;

    font-weight:800;

}


.timeline-content p{

    color:var(--gray);

    line-height:2;

}



/*==================================
TABLET
==================================*/

@media(max-width:1100px){

.video-slider{

grid-template-columns:1fr;

}

.timeline::before{

left:35px;

}

.timeline-item{

width:100%;

left:0!important;

padding-left:110px;

padding-right:20px;

text-align:left!important;

}

.timeline-number{

left:0!important;

right:auto!important;

}

}



/*==================================
MOBILE
==================================*/

@media(max-width:768px){

.video-thumb img{

height:220px;

}

.video-content{

padding:24px;

}

.timeline-content{

padding:25px;

}

.timeline-content h3{

font-size:24px;

}

.timeline-number{

width:65px;

height:65px;

font-size:20px;

}

}
/*==================================================
PART 3
COLD PRESS + QUALITY
==================================================*/


/*==================================
SOĞUK SIKIM
==================================*/

.coldpress-section{

    background:#f7f8f4;

    position:relative;

    overflow:hidden;

}

.coldpress-section::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    left:-250px;

    top:-250px;

    background:rgba(21,69,45,.05);

}

.coldpress-section::after{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    border-radius:50%;

    right:-200px;

    bottom:-200px;

    background:rgba(212,175,55,.08);

}

.coldpress-section .container{

    position:relative;

    z-index:2;

}

.coldpress-image{

    position:relative;

}

.coldpress-image img{

    width:100%;

    height:620px;

    object-fit:cover;

    border-radius:30px;

    background:#dde4da;

    box-shadow:var(--shadow);

    transition:.45s;

}

.coldpress-image img:hover{

    transform:scale(1.03);

}

.coldpress-image::after{

    content:"";

    position:absolute;

    inset:18px;

    border:2px solid rgba(212,175,55,.20);

    border-radius:30px;

    pointer-events:none;

}

.coldpress-section h2{

    font-size:52px;

    font-weight:900;

    color:var(--green);

    line-height:1.15;

    margin-bottom:30px;

}

.coldpress-section p{

    font-size:18px;

    color:var(--gray);

    line-height:2;

    margin-bottom:20px;

}


/*==================================
CHECK LIST
==================================*/

.coldpress-list{

    display:grid;

    gap:18px;

    margin-top:40px;

}

.cold-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:20px 24px;

    border-radius:18px;

    background:#fff;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

}

.cold-item:hover{

    transform:translateX(8px);

}

.cold-item i{

    color:var(--gold);

    font-size:24px;

}

.cold-item span{

    font-size:18px;

    font-weight:700;

    color:var(--green);

}



/*==================================
QUALITY
==================================*/

.quality-section{

    background:linear-gradient(

    135deg,

    var(--green-dark),

    var(--green)

    );

    position:relative;

    overflow:hidden;

}

.quality-section::before{

    content:"";

    position:absolute;

    width:800px;

    height:800px;

    border-radius:50%;

    left:-350px;

    top:-350px;

    background:rgba(255,255,255,.04);

}

.quality-section::after{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    right:-250px;

    bottom:-250px;

    background:rgba(212,175,55,.08);

}

.quality-section .container{

    position:relative;

    z-index:2;

}

.quality-section .section-tag{

    display:block;

    width:max-content;

    margin:0 auto 20px;

    background:rgba(255,255,255,.10);

    color:#fff;

}

.quality-section .section-title{

    color:#fff;

    text-align:center;

}

.quality-section .section-desc{

    color:rgba(255,255,255,.82);

    text-align:center;

    margin:20px auto 70px;

}



/*==================================
QUALITY GRID
==================================*/

.quality-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.quality-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.10);

    border-radius:28px;

    padding:45px 35px;

    text-align:center;

    transition:.35s;

}

.quality-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.12);

}

.quality-icon{

    width:95px;

    height:95px;

    border-radius:50%;

    margin:auto;

    margin-bottom:28px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(

    135deg,

    var(--gold),

    #efcf67

    );

    font-size:42px;

}

.quality-card h4{

    color:#fff;

    font-size:24px;

    margin-bottom:18px;

    font-weight:800;

}

.quality-card p{

    color:rgba(255,255,255,.82);

    line-height:1.9;

}



/*==================================
TABLET
==================================*/

@media(max-width:1100px){

.quality-grid{

grid-template-columns:repeat(2,1fr);

}

}



/*==================================
MOBILE
==================================*/

@media(max-width:768px){

.coldpress-image img{

height:360px;

}

.coldpress-section h2{

font-size:38px;

}

.quality-grid{

grid-template-columns:1fr;

}

.quality-card{

padding:35px;

}

}
/*==================================================
PART 4
SEO + CTA + GLOBAL + RESPONSIVE
==================================================*/


/*==================================
SEO
==================================*/

.production-seo{

    background:#ffffff;

}

.production-seo .section-tag{

    display:block;

    width:max-content;

    margin:0 auto 20px;

}

.production-seo .section-title{

    text-align:center;

    max-width:900px;

    margin:0 auto 35px;

}

.seo-content{

    max-width:950px;

    margin:auto;

}

.seo-content p{

    color:var(--gray);

    font-size:18px;

    line-height:2.1;

    margin-bottom:28px;

    text-align:justify;

}


/*==================================
CTA
==================================*/

.production-cta{

    position:relative;

    overflow:hidden;

    background:

    linear-gradient(

    135deg,

    #0d311f,

    #15452d

    );

}

.production-cta::before{

    content:"";

    position:absolute;

    width:850px;

    height:850px;

    border-radius:50%;

    left:-420px;

    top:-420px;

    background:rgba(255,255,255,.04);

}

.production-cta::after{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    right:-250px;

    bottom:-250px;

    background:rgba(212,175,55,.08);

}

.production-cta .container{

    position:relative;

    z-index:5;

}

.cta-box{

    max-width:950px;

    margin:auto;

    text-align:center;

    padding:70px;

    border-radius:34px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.10);

}

.cta-box .section-tag{

    background:rgba(255,255,255,.10);

    color:#fff;

}

.cta-box h2{

    font-size:56px;

    color:#fff;

    font-weight:900;

    line-height:1.15;

    margin-bottom:28px;

}

.cta-box p{

    color:rgba(255,255,255,.86);

    font-size:20px;

    line-height:2;

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons .btn{

    padding:18px 38px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.cta-buttons .btn-warning{

    background:var(--gold);

    border:none;

    color:#222;

}

.cta-buttons .btn-warning:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(212,175,55,.35);

}

.cta-buttons .btn-outline-light:hover{

    background:#fff;

    color:var(--green);

}


/*==================================
GLOBAL EFFECT
==================================*/

.production-page img{

    transition:.45s;

}

.production-page img:hover{

    transform:scale(1.03);

}

.production-page .btn{

    transition:.35s;

}

.production-page .btn:hover{

    transform:translateY(-4px);

}

::selection{

    background:var(--gold);

    color:#222;

}

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--green);

    border-radius:30px;

}

footer{

    margin-top:0!important;

}


/*==================================
SCROLL ANIMATION
==================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

.production-page section{

    animation:fadeUp .7s ease;

}


/*==================================
RESPONSIVE
==================================*/

@media(max-width:992px){

.production-page section{

padding:90px 0;

}

.production-hero{

min-height:620px;

}

.production-hero h1{

font-size:48px;

}

.section-title{

font-size:40px;

}

.cta-box{

padding:45px;

}

.cta-box h2{

font-size:40px;

}

}


@media(max-width:768px){

.hero-buttons{

flex-direction:column;

}

.hero-buttons .btn{

width:100%;

}

.intro-features{

grid-template-columns:1fr;

}

.cta-buttons{

flex-direction:column;

}

.cta-buttons .btn{

width:100%;

}

.production-hero h1{

font-size:34px;

}

.production-hero p{

font-size:17px;

}

.section-title{

font-size:30px;

}

.section-desc{

font-size:17px;

}

.cta-box{

padding:30px 20px;

}

.cta-box h2{

font-size:30px;

}

.cta-box p{

font-size:17px;

}

.seo-content p{

text-align:left;

font-size:17px;

}

}
/*==================================
JAVASCRIPT ANIMATION
==================================*/

.hidden{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.show{

    opacity:1;

    transform:none;

}

.video-card.active{

    transform:translateY(-12px) scale(1.02);

}

.timeline-active .timeline-content{

    transform:scale(1.03);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}
/* =========================================
   SWIPER
========================================= */

.productionSwiper{
    width:100%;
    padding:20px 0 70px;
    overflow:hidden;
}

.productionSwiper .swiper-wrapper{
    align-items:stretch;
}

.productionSwiper .swiper-slide{
    height:auto;
    display:flex;
}

.productionSwiper .video-card{
    width:100%;
    display:flex;
    flex-direction:column;
}
/* =========================================
   VIDEO SHOWCASE
========================================= */

.production-videos{

    padding:120px 0;

    background:linear-gradient(180deg,#0d3b24,#0f4b2b);

    position:relative;

    overflow:hidden;

}

.production-videos .section-tag{

    display:inline-block;

    padding:10px 22px;

    background:#f0c33b;

    color:#12351f;

    border-radius:50px;

    font-weight:700;

    margin-bottom:20px;

}

.production-videos .section-title{

    font-size:48px;

    color:#fff;

    font-weight:800;

    text-align:center;

    margin-bottom:20px;

}

.production-videos .section-desc{

    max-width:800px;

    margin:0 auto 70px;

    text-align:center;

    color:#d9e7dd;

    font-size:18px;

    line-height:1.8;

}

.video-showcase{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:40px;

    align-items:start;

}
/*=========================================
    MAIN VIDEO
=========================================*/

.main-video{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    background:#163d28;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 35px 80px rgba(0,0,0,.35);

}

.main-video img{

    width:100%;

    height:650px;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.main-video:hover img{

    transform:scale(1.03);

}

.video-play{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:95px;

    height:95px;

    border:none;

    border-radius:50%;

    background:#e4bb39;

    color:#fff;

    font-size:34px;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 20px 50px rgba(228,187,57,.45);

}

.video-play:hover{

    transform:translate(-50%,-50%) scale(1.08);

    background:#f0c94b;

}



/*=========================================
    VIDEO LIST
=========================================*/

.video-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.video-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px;

    border-radius:22px;

    cursor:pointer;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    backdrop-filter:blur(12px);

}

.video-item:hover{

    transform:translateX(10px);

    border-color:#e4bb39;

    background:rgba(228,187,57,.12);

}

.video-item.active{

    border-color:#e4bb39;

    background:rgba(228,187,57,.18);

}

.video-item img{

    width:120px;

    height:80px;

    object-fit:cover;

    border-radius:15px;

    flex-shrink:0;

}

.video-item h4{

    color:#fff;

    font-size:20px;

    margin-bottom:8px;

    font-weight:700;

}

.video-item p{

    color:#d8e5d9;

    font-size:15px;

    line-height:1.6;

}