/*==================================================
        PREMIUM HERO V4
==================================================*/

.hero{

    position:relative;

    min-height:92vh;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:
    linear-gradient(
        rgba(4,20,10,.72),
        rgba(4,20,10,.82)
    ),
    url("https://images.unsplash.com/photo-1474979266404-7eaacbcd87c5");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

}

/* GOLD LIGHT */

.hero::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    right:-220px;
    top:-180px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(212,175,55,.35),
    transparent 70%);

    filter:blur(40px);

    animation:goldMove 12s linear infinite;

}

.hero::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    left:-160px;
    bottom:-160px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(17,91,43,.35),
    transparent 70%);

    filter:blur(45px);

    animation:greenMove 14s linear infinite;

}

@keyframes goldMove{

0%{

transform:translate(0,0);

}

50%{

transform:translate(-50px,60px);

}

100%{

transform:translate(0,0);

}

}

@keyframes greenMove{

0%{

transform:translate(0,0);

}

50%{

transform:translate(80px,-40px);

}

100%{

transform:translate(0,0);

}

}

/* CONTENT */

.hero .container{

    position:relative;

    z-index:5;

    max-width:1250px;

    margin:auto;

    padding:0 30px;

}

/* TITLE */

.hero h1{

    color:#fff;

    font-size:72px;

    line-height:1.05;

    font-weight:900;

    max-width:820px;

    text-shadow:
    0 15px 35px rgba(0,0,0,.45);

    animation:fadeHero 1s ease;

}

.hero h1 span{

    color:#d4af37;

}

/* TEXT */

.hero p{

    margin-top:28px;

    font-size:23px;

    line-height:1.8;

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

    max-width:650px;

}

/* RATING */

.hero-rating{

    margin-top:22px;

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:12px 22px;

    border-radius:60px;

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

    backdrop-filter:blur(18px);

    color:#fff;

    font-weight:600;

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

}

/* BADGES */

.hero-badges{

    margin-top:40px;

    display:flex;

    flex-wrap:wrap;

    gap:16px;

}

.hero-badges span{

    padding:14px 22px;

    border-radius:60px;

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

    backdrop-filter:blur(18px);

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

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.hero-badges span:hover{

    transform:translateY(-5px);

    background:#d4af37;

    color:#111;

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

}

/* BUTTON */

.btn-main{

    margin-top:45px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:18px 42px;

    border-radius:60px;

    background:linear-gradient(
    135deg,
    #d4af37,
    #ffd95b);

    color:#111;

    font-size:18px;

    font-weight:800;

    transition:.35s;

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

}

.btn-main:hover{

    transform:translateY(-6px);

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

}

/* STATS */

.hero-stats{

    margin-top:60px;

    display:flex;

    gap:25px;

    flex-wrap:wrap;

}

.hero-stats div{

    width:180px;

    padding:25px;

    border-radius:22px;

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

    backdrop-filter:blur(18px);

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

    transition:.35s;

}

.hero-stats div:hover{

    transform:translateY(-8px);

    border-color:#d4af37;

}

.hero-stats h3{

    color:#d4af37;

    font-size:38px;

    margin-bottom:8px;

}

.hero-stats span{

    color:#fff;

    font-size:15px;

}

/* FADE */

@keyframes fadeHero{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:none;

}

}
/*==================================================
        WHY US PREMIUM
==================================================*/

.why-us{

    max-width:1350px;

    margin:120px auto;

    padding:0 30px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

/* SOL FOTO */

.why-left{

    position:relative;

}

.why-left::before{

    content:"";

    position:absolute;

    inset:-20px;

    border-radius:40px;

    background:linear-gradient(
        135deg,
        rgba(212,175,55,.25),
        transparent
    );

    filter:blur(30px);

    z-index:0;

}

.why-left img{

    position:relative;

    z-index:2;

    width:100%;

    height:560px;

    object-fit:cover;

    border-radius:35px;

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

    transition:.45s;

}

.why-left img:hover{

    transform:scale(1.03);

}

/* SAĞ */

.why-right{

    color:#fff;

}

.section-mini{

    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

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

    color:#d4af37;

    font-weight:700;

    letter-spacing:1px;

}

.why-right h2{

    margin:25px 0;

    font-size:56px;

    line-height:1.1;

    font-weight:900;

}

.why-right p{

    font-size:19px;

    line-height:1.9;

    color:#d9d9d9;

}

.why-list{

    margin-top:35px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

}

.why-list li{

    list-style:none;

    padding:18px 20px;

    border-radius:18px;

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

    backdrop-filter:blur(15px);

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

    transition:.35s;

    font-weight:600;

}

.why-list li:hover{

    transform:translateY(-6px);

    background:#d4af37;

    color:#111;

}

/*==========================
FEATURE CARDS
==========================*/

.why-features{

    max-width:1350px;

    margin:140px auto;

    padding:0 30px;

}

.section-title{

    color:#fff;

    text-align:center;

    font-size:58px;

    font-weight:900;

}

.section-subtitle{

    margin:20px auto 60px;

    color:#cfcfcf;

    max-width:700px;

    text-align:center;

    font-size:20px;

}

.why-grid{

    display:grid;

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

    gap:30px;

}

.why-card{

    position:relative;

    overflow:hidden;

    padding:45px 30px;

    border-radius:30px;

    text-align:center;

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

    backdrop-filter:blur(18px);

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

    transition:.45s;

}

.why-card::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

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

    border-radius:50%;

    filter:blur(50px);

    top:-100px;

    right:-100px;

    opacity:0;

    transition:.45s;

}

.why-card:hover::before{

    opacity:1;

}

.why-card:hover{

    transform:translateY(-12px);

    border-color:#d4af37;

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

}

.why-icon{

    width:95px;

    height:95px;

    margin:auto;

    margin-bottom:28px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #d4af37,
        #ffd95b
    );

    font-size:42px;

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

}

.why-card h4{

    color:#fff;

    font-size:26px;

    margin-bottom:15px;

}

.why-card p{

    color:#d8d8d8;

    line-height:1.8;

}
/*==================================================
        PREMIUM STATS
==================================================*/

.stats-section{

    max-width:1350px;

    margin:120px auto;

    padding:0 30px;

    display:grid;

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

    gap:30px;

}

.stat-box{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    padding:45px 25px;

    text-align:center;

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

    backdrop-filter:blur(20px);

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

    transition:.4s;

}

.stat-box::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

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

    border-radius:50%;

    top:-120px;

    right:-120px;

    filter:blur(45px);

    opacity:0;

    transition:.45s;

}

.stat-box:hover::before{

    opacity:1;

}

.stat-box:hover{

    transform:translateY(-12px);

    border-color:#d4af37;

    box-shadow:

        0 30px 60px rgba(0,0,0,.35);

}

.stat-box h2{

    color:#d4af37;

    font-size:60px;

    font-weight:900;

    margin-bottom:15px;

}

.stat-box span{

    color:#fff;

    font-size:19px;

    font-weight:600;

}
@media(max-width:992px){

.stats-section{

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

}

}

@media(max-width:576px){

.stats-section{

grid-template-columns:1fr;

}

.stat-box{

padding:35px 20px;

}

.stat-box h2{

font-size:42px;

}

}
/*==================================================
        PREMIUM PROCESS
==================================================*/

.process-section{

padding:70px 20px 30px;

text-align:center;

}

.process-section h2{

font-size:56px;

font-weight:800;

color:#fff;

margin-bottom:15px;

}

.process-section p{

color:#b7c2b8;

margin-bottom:80px;

font-size:20px;

}

.process-line{

display:grid;

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

gap:28px;

max-width:1500px;

margin:auto;

position:relative;

}

.process-line::before{

content:"";

position:absolute;

top:60px;

left:5%;

width:90%;

height:3px;

background:linear-gradient(90deg,#d4af37,#ffd96d,#d4af37);

z-index:0;

}

.process-card{

position:relative;

z-index:5;

padding:30px 18px;

border-radius:28px;

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

backdrop-filter:blur(20px);

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

transition:.35s;

}

.process-card:hover{

transform:translateY(-15px);

border-color:#d4af37;

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

}

.process-icon{

width:90px;

height:90px;

margin:auto;

border-radius:50%;

background:linear-gradient(135deg,#ffd95e,#d4af37);

display:flex;

align-items:center;

justify-content:center;

font-size:38px;

color:#111;

margin-bottom:25px;

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

}

.process-card h4{

color:#fff;

font-size:26px;

margin-bottom:12px;

}

.process-card span{

color:#bfc8bf;

line-height:1.7;

}
@media(max-width:1200px){

.process-line{

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

}

.process-line::before{

display:none;

}

}

@media(max-width:768px){

.process-line{

grid-template-columns:1fr;

}

.process-card{

padding:40px 25px;

}

.process-section h2{

font-size:38px;

}

}
/*==================================================
        PREMIUM TESTIMONIAL
==================================================*/

.testimonial-section{

padding:60px 20px 25px;

text-align:center;

}

.testimonial-grid{

max-width:1400px;

margin:70px auto 0;

display:grid;

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

gap:35px;

}

.testimonial-card{

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

backdrop-filter:blur(18px);

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

border-radius:32px;

padding:45px;

text-align:left;

transition:.4s;

position:relative;

overflow:hidden;

}

.testimonial-card::before{

content:"";

position:absolute;

width:220px;

height:220px;

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

border-radius:50%;

top:-110px;

right:-110px;

filter:blur(45px);

opacity:0;

transition:.4s;

}

.testimonial-card:hover::before{

opacity:1;

}

.testimonial-card:hover{

transform:translateY(-12px);

border-color:#d4af37;

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

}

.review-stars{

font-size:28px;

color:#FFD54A;

margin-bottom:20px;

letter-spacing:4px;

}

.testimonial-card p{

color:#d7dfd8;

font-size:17px;

line-height:1.8;

min-height:120px;

}

.review-user{

display:flex;

align-items:center;

gap:18px;

margin-top:35px;

}

.avatar{

width:65px;

height:65px;

border-radius:50%;

background:linear-gradient(135deg,#ffd95e,#d4af37);

display:flex;

align-items:center;

justify-content:center;

font-size:26px;

font-weight:700;

color:#111;

}

.review-user h4{

color:#fff;

margin:0;

font-size:19px;

}

.review-user span{

color:#b7c2b8;

font-size:15px;

}
@media(max-width:992px){

.testimonial-grid{

grid-template-columns:1fr;

}

.testimonial-card{

padding:35px;

}

}
/*==================================================
        PREMIUM PRODUCTS V2
==================================================*/

.products-section{

padding:35px 20px 40px;

}

.products-grid{

max-width:1450px;

margin:auto;

display:grid;

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

gap:40px;

margin-bottom:35px;

}

.product-card{

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

backdrop-filter:blur(18px);

border-radius:30px;

overflow:hidden;

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

transition:.45s;

position:relative;

}

.product-card:hover{

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

box-shadow:

0 35px 70px rgba(0,0,0,.35),

0 0 35px rgba(212,175,55,.25);

}

.product-image{

position:relative;

overflow:hidden;

}

.product-image img{

width:100%;

height:330px;

object-fit:cover;

transition:.6s;

}

.product-card:hover img{

transform:scale(1.08);

}

.product-badge{

position:absolute;

top:18px;

left:18px;

padding:10px 18px;

background:linear-gradient(135deg,#ffd95e,#d4af37);

color:#111;

font-weight:700;

border-radius:40px;

}

.product-content{

padding:28px;

}

.product-content h3{

font-size:30px;

color:#fff;

margin-bottom:15px;

}

.gold-line{

width:90px;

height:4px;

border-radius:50px;

background:#d4af37;

margin-bottom:20px;

}

.product-price{

font-size:38px;

font-weight:800;

color:#FFD54A;

margin-bottom:18px;

}

.shipping-badge{

display:inline-block;

padding:10px 18px;

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

border-radius:50px;

color:#fff;

margin-bottom:20px;

}

.product-features{

display:flex;

flex-wrap:wrap;

gap:10px;

margin-bottom:20px;

}

.product-features span{

padding:8px 14px;

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

border-radius:25px;

color:#ddd;

font-size:14px;

}

.stock-info{

color:#78ff8f;

font-weight:600;

margin-bottom:25px;

}

.product-buttons{

display:flex;

gap:15px;

align-items:center;

}

.buy-btn{

flex:1;

height:58px;

display:flex;

align-items:center;

justify-content:center;

background:linear-gradient(135deg,#ffd95e,#d4af37);

border-radius:18px;

color:#111;

font-weight:700;

font-size:17px;

transition:.35s;

}

.buy-btn:hover{

transform:scale(1.03);

}

.favorite-btn{

width:58px;

height:58px;

border:none;

border-radius:18px;

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

color:#fff;

font-size:22px;

cursor:pointer;

transition:.35s;

}

.favorite-btn:hover{

background:#d4af37;

color:#111;

}
@media(max-width:992px){

.products-grid{

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

}

}

@media(max-width:576px){

.products-grid{

grid-template-columns:1fr;

}

.product-image img{

height:260px;

}

.product-content h3{

font-size:24px;

}

.product-price{

font-size:30px;

}

}
/*==================================================
        PREMIUM ABOUT
==================================================*/

.about{

padding:40px 20px 70px;

}

.about-wrapper{

max-width:1450px;

margin:auto;

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.about-image{

position:relative;

}

.about-image img{

width:100%;

height:650px;

object-fit:cover;

border-radius:35px;

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

}

.about-badge{

position:absolute;

left:35px;

bottom:35px;

padding:18px 28px;

border-radius:50px;

background:rgba(0,0,0,.55);

backdrop-filter:blur(15px);

color:#fff;

font-weight:700;

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

}

.about-content h2{

font-size:60px;

line-height:1.1;

color:#fff;

margin:20px 0;

}

.about-content p{

color:#c9d0ca;

font-size:18px;

line-height:2;

margin-bottom:25px;

}

.about-cards{

display:grid;

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

gap:20px;

margin:45px 0;

}

.about-box{

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

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

border-radius:25px;

padding:28px;

text-align:center;

transition:.35s;

}

.about-box:hover{

transform:translateY(-10px);

border-color:#d4af37;

}

.about-box h3{

font-size:42px;

color:#FFD54A;

margin-bottom:10px;

}

.about-box span{

color:#fff;

}

.about-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:18px 45px;

border-radius:60px;

background:linear-gradient(135deg,#FFD95E,#D4AF37);

color:#111;

font-weight:700;

font-size:18px;

transition:.35s;

}

.about-btn:hover{

transform:translateY(-4px);

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

}
@media(max-width:992px){

.about-wrapper{

grid-template-columns:1fr;

}

.about-image img{

height:420px;

}

.about-content{

text-align:center;

}

.about-cards{

grid-template-columns:1fr;

}

}

@media(max-width:576px){

.about{

padding:100px 20px;

}

.about-content h2{

font-size:36px;

}

.about-content p{

font-size:16px;

}

.about-btn{

width:100%;

}

}
/* WHY SECTION FIX */

.why-features{

width:100%;

max-width:1400px;

margin:80px auto;

padding:0 25px;

}

.why-grid{

display:grid;

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

gap:30px;

}

.why-card{

height:100%;

min-height:320px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

padding:40px 30px;

}
@media(max-width:992px){

.why-grid{

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

}

}
@media(max-width:576px){

.why-grid{

grid-template-columns:1fr;

}

.why-card{

min-height:auto;

padding:35px;

}

}
.process-section{

padding:90px 25px;

}

.process-grid{

max-width:1400px;

margin:60px auto;

display:grid;

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

gap:25px;

}

.process-card{

padding:35px 20px;

min-height:220px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

}
@media(max-width:992px){

.process-grid{

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

}

}
@media(max-width:576px){

.process-grid{

grid-template-columns:1fr;

}

.process-card{

min-height:170px;

}

}
.stats-section,

.process-section,

.testimonial-section,

.products-section,

.about,

.why-features,

.why-us{

margin-top:70px;

margin-bottom:70px;

}
section{

overflow:hidden;

}