/* =========================================================
   ALPELUX - ANASAYFA.CSS
   ========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --primary:#6C63FF;
    --secondary:#C86BFF;
    --text:#111111;
    --text-light:#707070;
    --white:#ffffff;
    --border:#ECECEC;
    --bg:#F8F8FC;

    --gradient:
    linear-gradient(
        135deg,
        #6A8BFF 0%,
        #C86BFF 100%
    );

    --shadow:
    0 20px 60px rgba(0,0,0,0.06);

    --radius-xl:36px;
    --radius-lg:24px;
    --radius-md:18px;
    --radius-sm:14px;

}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
    position:relative;
}

/* =========================================================
   GLOBAL
   ========================================================= */

img{
    max-width:100%;
    display:block;
}

button,
a{
    transition:0.3s ease;
}

button{
    cursor:pointer;
    border:none;
    outline:none;
    font-family:'Inter',sans-serif;
}

a{
    text-decoration:none;
}

.container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 24px;
}

/* =========================================================
   BACKGROUND BLUR
   ========================================================= */

.bg-blur{
    position:fixed;
    border-radius:50%;
    filter:blur(140px);
    z-index:-1;
}

.blur-1{
    width:450px;
    height:450px;
    background:#D16EFF;
    top:-120px;
    right:-100px;
    opacity:0.25;
}

.blur-2{
    width:400px;
    height:400px;
    background:#6D84FF;
    left:-140px;
    top:300px;
    opacity:0.18;
}

/* =========================================================
   HEADER
   ========================================================= */

.header{
    position:sticky;
    top:0;
    z-index:999;
    padding:0px 0;
    backdrop-filter:blur(16px);
}

.navbar{
    background:rgba(255,255,255,0.75);
    border:1px solid rgba(255,255,255,0.7);
    box-shadow:var(--shadow);
    border-radius:0px 0px 9px 9px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 26px;
}

.logo-area img{
    height:34px;
}

.menu{
    display:flex;
    align-items:center;
    gap:34px;
}

.menu a{
    color:#444;
    font-size:15px;
    font-weight:500;
    position:relative;
}

.menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--gradient);
    transition:0.3s;
}

.menu a:hover::after{
    width:100%;
}

.menu a:hover{
    color:var(--primary);
}

.header-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.demo-btn{
    background:#fff;
    border:1px solid var(--border);
    padding:14px 20px;
    border-radius:16px;
    font-weight:600;
    color:#333;
}

.demo-btn:hover{
    transform:translateY(-3px);
}

.buy-btn{
    background:var(--gradient);
    color:#fff;
    padding:14px 22px;
    border-radius:16px;
    font-weight:700;
    box-shadow:
    0 15px 35px rgba(177,110,255,0.35);
}

.buy-btn:hover{
    transform:translateY(-4px);
}

.language-box{
    background:#fff;
    border:1px solid var(--border);
    height:50px;
    padding:0 16px;
    border-radius:16px;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    font-weight:600;
}

.mobile-menu-btn{
    display:none;
    width:50px;
    height:50px;
    border-radius:16px;
    background:#fff;
    border:1px solid var(--border);
    font-size:22px;
}

/* =========================================================
   HERO
   ========================================================= */

.hero-section{
    padding:70px 0 60px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.mini-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
	color:#150B09;
    background:#fff;
    border:1px solid #F0F0F0;
    padding:13px 18px;
    border-radius:100px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
    font-size:14px;
    font-weight:500;
}

.hero-content h1{
    font-size:72px;
    line-height:1.05;
    font-weight:800;
    margin:26px 0;
    letter-spacing:-2px;
}

.hero-content h1 span{
    background:var(--gradient);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-content p{
    color:var(--text-light);
	font-size: 16px;
    line-height: 1.9;
    font-weight: 300;
    max-width: 620px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-top:36px;
}

.primary-btn{
    background:var(--gradient);
    color:#fff;
    padding:18px 34px;
    border-radius:20px;
    font-weight:700;
    box-shadow:
    0 15px 40px rgba(183,108,255,0.30);
}

.primary-btn:hover{
    transform:translateY(-4px);
}

.secondary-btn{
    background:#fff;
    border:1px solid var(--border);
    color:#222;
    padding:18px 34px;
    border-radius:20px;
    font-weight:700;
}

.secondary-btn:hover{
    background:#F3F3F3;
}

.hero-features{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:34px;
    margin-top:36px;
}

.hero-features div{
    display:flex;
    align-items:center;
    gap:8px;
    color:#666;
    font-weight:600;
}

.hero-features span{
    color:#C26CFF;
}

.hero-image-area{
    position: relative;
    border-radius: 0px;
    padding: 0px;
    overflow: hidden;
}

.hero-image-area::before{
    content:'';
    position:absolute;
    width:520px;
    height:520px;
    background:
    radial-gradient(
        circle,
        rgba(205,109,255,0.4) 0%,
        rgba(255,255,255,0) 70%
    );

    right:-160px;
    top:0;
}

.hero-car{
    position:relative;
    z-index:2;
}

.avatar{
    position: absolute;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #fff;
    padding: 0px;
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.30);
    z-index: 5;
}

.avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}

.avatar-1{
    top:60px;
    left:80px;
}

.avatar-2{
    top:2px;
    right:260px;
}

.avatar-3{
    right:60px;
    top:30px;
}

.avatar-4{
        left: 10px;
    top: 210px;
}

/* =========================================================
   SECTION TITLE
   ========================================================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:16px;
}

.section-title p{
    font-size:18px;
    color:#777;
}

/* =========================================================
   COMMON SECTION
   ========================================================= */

.steps-section,
.features-section,
.testimonial-section,
.cta-section{
    padding:100px 0;
}

/* =========================================================
   GRID
   ========================================================= */

.steps-grid,
.features-grid,
.testimonial-grid{
    display:grid;
    gap:26px;
}

.steps-grid{
    grid-template-columns:repeat(4,1fr);
}

.features-grid{
    grid-template-columns:repeat(5,1fr);
}

.testimonial-grid{
    grid-template-columns:repeat(3,1fr);
}

/* =========================================================
   CARDS
   ========================================================= */

.step-card,
.feature-card,
.testimonial-card{
    background:#fff;
    border-radius:32px;
    padding:34px;
    border:1px solid #F0F0F0;
    box-shadow:var(--shadow);
    transition:0.35s;
    position:relative;
    overflow:hidden;
}

.step-card:hover,
.feature-card:hover,
.testimonial-card:hover{
    transform:translateY(-10px);
}

.step-number{
    position:absolute;
    top:22px;
    left:22px;
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--gradient);
    color:#fff;
    font-size:14px;
    font-weight:700;
}

.step-card img,
.feature-card img{
    width:160px;
    margin:30px auto 24px;
}

.step-card h3,
.feature-card h3{
    text-align:center;
    font-size:21px;
    margin-bottom:14px;
}

.step-card p,
.feature-card p{
    text-align:center;
    line-height:1.8;
    color:#777;
}

/* =========================================================
   PROMO
   ========================================================= */

.promo-section{
    padding-bottom:100px;
}

.promo-box{
    background:
    linear-gradient(
        135deg,
        #FFFFFF 0%,
        #F5E9FF 100%
    );

    border-radius:42px;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    padding:70px;
    position:relative;
}

.promo-box::after{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    right:-180px;
    bottom:-220px;
    background:
    radial-gradient(
        circle,
        rgba(105,129,255,0.25) 0%,
        rgba(255,255,255,0) 70%
    );
}

.promo-content h2{
    font-size:54px;
    line-height:1.2;
    margin-bottom:24px;
}

.promo-content p{
    max-width:540px;
    line-height:1.9;
    color:#666;
    margin-bottom:40px;
}

.promo-image img{
    width:370px;
    margin:70px auto 0px auto;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================================================
   TESTIMONIAL
   ========================================================= */

.testimonial-top{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:26px;
}

.testimonial-top img{
    width:62px;
    height:62px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-top h3{
    font-size:19px;
    margin-bottom:4px;
}

.testimonial-top span{
    font-size:14px;
    color:#888;
}

.testimonial-card p{
    color:#555;
    line-height:1.9;
    margin-bottom:24px;
}

.stars{
    color:#FFB400;
    font-size:22px;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-box{
    background:var(--gradient);
    border-radius:34px;
    padding:36px 42px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    color:#fff;
}

.cta-left{
    display:flex;
    align-items:center;
    gap:24px;
}

.cta-left img{
    width:74px;
}

.cta-left h3{
    font-size:32px;
    margin-bottom:8px;
}

.cta-left p{
    opacity:0.92;
}

.cta-button{
    background:#fff;
    color:#111;
    padding:18px 28px;
    border-radius:18px;
    font-weight:700;
}

.cta-button:hover{
    transform:translateY(-4px);
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer{
    background:#fff;
    border-top:1px solid #EEE;
    padding-top:90px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    padding-bottom:70px;
}

.footer-brand img{
    height:40px;
    margin-bottom:22px;
}

.footer-brand p{
    max-width:320px;
    line-height:1.9;
    color:#666;
}

.socials{
    display:flex;
    gap:12px;
    margin-top:24px;
}

.socials a{
    width:44px;
    height:44px;
    border-radius:14px;
    background:#F5F5F5;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#444;
    font-weight:700;
}
.socials i{
    
    align-items:center;
    justify-content:center;
    color:#444;
    font-weight:700;
}

.socials a:hover{
    background:var(--gradient);
    color:#fff;
}

.footer-col h4{
    margin-bottom:22px;
    font-size:20px;
}

.footer-col a{
    display:block;
    margin-bottom:16px;
    color:#666;
}

.footer-col a:hover{
    color:var(--primary);
}

.copyright{
    border-top:1px solid #EEE;
    padding:24px;
    text-align:center;
    color:#777;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:1200px){

    .hero-content h1{
        font-size:58px;
    }

    .steps-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .features-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .testimonial-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:992px){

    .menu{
        position:absolute;
        top:100%;
        left:24px;
        right:24px;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        padding:24px;
        border-radius:24px;
        box-shadow:var(--shadow);
        display:none;
    }

    .menu.active{
        display:flex;
    }

    .mobile-menu-btn{
        display:block;
    }

    .hero-grid,
    .promo-box,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .hero-content{
        text-align:center;
    }

    .hero-content p{
        margin:auto;
    }

    .hero-buttons,
    .hero-features{
        justify-content:center;
    }

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cta-box{
        flex-direction:column;
        text-align:center;
    }

    .cta-left{
        flex-direction:column;
    }

}

@media(max-width:768px){

    .header-actions .demo-btn,
    .header-actions .buy-btn,
    .language-box{
        display:none;
    }

    .hero-content h1{
        font-size: 3.1rem;
        line-height: 1.4;
        font-weight: 700;
    }

    .section-title h2{
        font-size:36px;
    }

    .promo-content h2{
        font-size:40px;
    }

    .hero-image-area,
    .promo-box{
        padding:30px;
    }

    .steps-grid,
    .features-grid{
        grid-template-columns:1fr;
    }

    .step-card,
    .feature-card,
    .testimonial-card{
        padding:28px;
    }

}

@media(max-width:500px){

    .container{
        padding:0 18px;
    }

    .navbar{
        padding:16px 18px;
    }

    .hero-section{
        padding-top:40px;
    }

    .hero-content h1{
        font-size: 3rem;
        line-height: 1.3;
        font-weight: 700;
    }

    .hero-buttons{
        flex-direction:inherit;
    }

    .primary-btn,
    .secondary-btn{
        width:50%%;
        text-align:center;
    }

    .promo-content h2{
        font-size:32px;
    }

    .avatar{
        width:62px;
        height:62px;
    }

    .cta-left h3{
        font-size:26px;
    }
	
	
	.avatar-1{
    top:80px;
    left:60px;
}

.avatar-2{
    top:2px;
    right:200px;
}

.avatar-3{
    right:60px;
    top:30px;
}

.avatar-4{
        left: 10px;
    top: 210px;
}
	

}
















.instagram-section{
    width:100%;
    padding:60px 20px;
    background:transparent;
}

.instagram-title{
    text-align:center;
    margin-bottom:40px;
}

.instagram-title h2{
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.instagram-title p{
    font-size: 18px;
    color: #777;
}

/* GRID */
.instagram-grid{
    width:100%;
    max-width:1230px;
    margin:0px auto 30px auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* POST KART */
.instagram-item{
    background:#fff;
    overflow:hidden;
    padding:15px;
    border-radius: 16px;
    border: 1px solid #F0F0F0;
    box-shadow: var(--shadow);
    transition: 0.35s;
}

.instagram-item:hover{
    transform:translateY(-5px);
}

/* INSTAGRAM EMBED */
.instagram-media{
    min-width:100% !important;
    width:100% !important;
    margin:0 !important;
}

/* TABLET */
@media(max-width:992px){

    .instagram-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBİL */
@media(max-width:768px){

    .instagram-section{
        padding:40px 15px;
    }

    .instagram-title h2{
        font-size:28px;
    }

    .instagram-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .instagram-item{
        padding:10px;
        border-radius:15px;
    }

}
