/* ===========================
   KARACA DEKORASYON PREMIUM
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

:root{

--primary:#F97316;
--dark:#111827;
--light:#ffffff;
--gray:#f5f5f5;
--text:#555;
--radius:24px;
--shadow:0 20px 60px rgba(0,0,0,.10);
--transition:.35s;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Inter',sans-serif;
background:#fff;
color:#222;
line-height:1.7;
overflow-x:hidden;

}

img{

width:100%;
display:block;

}

a{

text-decoration:none;

}

.container{

width:min(1180px,92%);
margin:auto;

}

section{

padding:100px 0;

}

.section-title{

text-align:center;
margin-bottom:70px;

}

.section-title span{

color:var(--primary);
font-weight:700;
letter-spacing:2px;
font-size:14px;

}

.section-title h2{

font-size:46px;
font-family:'Poppins',sans-serif;
margin:15px 0;

}

.section-title p{
max-width:760px;
margin:auto;
color:#6b7280;
font-size:18px;
line-height:1.8;
}

/* HEADER */

.header{

position:fixed;
top:0;
left:0;
width:100%;
background:rgba(255,255,255,.90);
backdrop-filter:blur(20px);
z-index:999;

}

.header .container{
    height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:80px;
    width:auto;
    display:block;
    transition:.3s ease;
}

.logo img:hover{
    transform:scale(1.05);
}

.menu{

display:flex;
gap:35px;

}

.menu a{

color:#111827;
font-weight:600;
letter-spacing:.3px;
transition:.3s;

}

.menu a:hover{

color:var(--primary);

}

.menu-btn{

background:var(--primary);
color:#fff;
padding:13px 24px;
border-radius:50px;
font-weight:700;
transition:.3s;

}

.menu-btn:hover{

transform:translateY(-3px);

}

/* HERO */

.hero{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("images/hero.jpg") center center/cover no-repeat;
    animation:heroZoom 18s ease-in-out infinite alternate;
}

.hero-overlay{

position:absolute;
inset:0;
background:rgba(0,0,0,.60);

}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:900px;
    margin:auto;
    text-align:center;
     transform:translateY(-40px);
}

.hero-content h1{
    font-size:60px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
    text-transform:uppercase;
    letter-spacing:2px;
    text-shadow:0 10px 35px rgba(0,0,0,.45);
}

.hero-content p{
    font-size:22px;
    line-height:1.8;
    max-width:700px;
    margin:0 auto 35px;
    color:#f3f4f6;
}

.hero-buttons{

    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;

}

.btn{
  padding:18px 40px;
    border-radius:999px;
    background:linear-gradient(135deg,#F97316,#EA580C);
    color:#fff;
    font-weight:700;
    font-size:17px;
    text-decoration:none;
    display:inline-block;
    box-shadow:0 15px 35px rgba(249,115,22,.25);
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
}
.btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transition:.6s;
}
.btn:hover::before{
    left:140%;
}
.btn:hover{
 transform:translateY(-5px) scale(1.03);
    box-shadow:0 20px 45px rgba(249,115,22,.35);
}

.btn-whatsapp{

background:#25D366;

}
/* ===========================
   HİZMETLER
=========================== */

.services{

background:var(--gray);

}

.services-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;

}

.service-card{
background:#fff;
padding:50px 35px;
border-radius:24px;
box-shadow:0 20px 60px rgba(0,0,0,.08);
border:1px solid rgba(0,0,0,.05);
transition:.35s;
position:relative;
overflow:hidden;
min-height:420px;
}

.service-card::before{

content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:5px;
background:var(--primary);
transition:.4s;

}

.service-card:hover::before{

left:0;

}

.service-card:hover{
transform:translateY(-12px);
box-shadow:0 30px 70px rgba(0,0,0,.12);
}

.service-card i{

font-size:55px;
color:var(--primary);
margin-bottom:25px;

}

.service-card h3{
font-size:28px;
font-family:'Poppins',sans-serif;
font-weight:700;
margin-bottom:18px;
color:#111827;
}

.service-card p{
color:#6b7280;
font-size:17px;
line-height:1.8;
}

/* ===========================
   GALERİ
=========================== */

.gallery{
    background:#fff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(380px,1fr));
    gap:35px;
    margin-top:40px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    transition:.4s;
    box-shadow:0 12px 35px rgba(0,0,0,.12);
}

.gallery-item img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}

.gallery-item:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.20);
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.18);
    opacity:0;
    transition:.4s;
}

.gallery-item:hover::after{
    opacity:1;
}



/* ===========================
   HAKKIMIZDA
=========================== */

.about{

background:var(--gray);

}

.about-grid{
    max-width:900px;
    margin:auto;
}

.about-image img{

border-radius:20px;
box-shadow:var(--shadow);

}

.about-content span{

color:var(--primary);
font-weight:700;
letter-spacing:2px;

}

.about-content h2{

font-size:46px;
margin:18px 0;
font-family:'Poppins',sans-serif;

}

.about-content p{

margin-bottom:20px;
color:var(--text);

}

.about-features{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
margin-top:30px;

}

.about-features div{

background:#fff;
padding:18px;
border-radius:12px;
font-weight:600;
box-shadow:0 8px 20px rgba(0,0,0,.08);

}

/* ===========================
   SAYAÇ
=========================== */

.counter{

background:var(--dark);
color:white;

}

.counter-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;

}

.counter-box{

text-align:center;

}

.counter-box h2{

font-size:54px;
color:var(--primary);
font-family:'Poppins',sans-serif;

}

.counter-box p{

margin-top:10px;
font-size:18px;

}
/* ===========================
   MÜŞTERİ YORUMLARI
=========================== */

.testimonials{
background:#fff;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:all .35s ease;
    border-top:5px solid var(--primary);
    border:1px solid rgba(249,115,22,.08);
    position:relative;
    overflow:hidden;
}
.testimonial-card::before{
    content:"❝";
    position:absolute;
    top:10px;
    right:20px;
    font-size:70px;
    color:rgba(249,115,22,.08);
    font-family:serif;
    line-height:1;
}
.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 22px 45px rgba(0,0,0,.15);
}

.testimonial-card p{
    color:var(--text);
    margin-bottom:25px;
    font-style:italic;
    line-height:1.8;
}

.testimonial-card h4{
    color:#f59e0b;
    font-size:22px;
    margin-bottom:15px;
    letter-spacing:2px;
}

.testimonial-card span{
    font-weight:700;
    color:#333;
}

/* ===========================
   İLETİŞİM
=========================== */

.contact{
background:var(--gray);
}

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.contact-card{
background:#fff;
padding:40px 30px;
text-align:center;
border-radius:18px;
box-shadow:var(--shadow);
transition:.35s;
}

.contact-card:hover{
transform:translateY(-10px);
}

.contact-card h3{
margin-bottom:20px;
font-size:24px;
font-family:'Poppins',sans-serif;
}

.contact-card a{
color:var(--primary);
font-weight:700;
font-size:18px;
}

.contact-card p{
font-size:18px;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#111827;
    color:#fff;
    padding:90px 20px;
    text-align:center;
    border-top:4px solid #F97316;
}

footer h2{
    font-size:38px;
    margin-bottom:20px;
    font-family:'Poppins',sans-serif;
    color:#fff;
}

footer p{
    color:#d1d5db;
    line-height:2;
    font-size:17px;
}

footer a{
    color:#F97316;
    text-decoration:none;
}

footer a:hover{
    color:#fff;
}

/* ===========================
   MOBİL
=========================== */

@media(max-width:992px){

.hero-content h1{
font-size:48px;
}

.about-grid{
grid-template-columns:1fr;
}

.menu{
display:none;
}

.header .container{
height:75px;
}

}

@media(max-width:768px){

section{
padding:70px 0;
}

.hero{
text-align:center;
}

.hero-content h1{
font-size:38px;
}

.hero-content p{
font-size:17px;
}

.hero-buttons{
justify-content:center;
}

.section-title h2{
font-size:52px;
font-family:'Poppins',sans-serif;
font-weight:700;
letter-spacing:-1px;
color:#111827;
margin:15px 0 20px;
line-height:1.2;
}
.about-features{
grid-template-columns:1fr;
}

.gallery-grid{
grid-template-columns:1fr;
}

.services-grid{
grid-template-columns:1fr;
}

.testimonial-grid{
grid-template-columns:1fr;
}

.contact-grid{
grid-template-columns:1fr;
}

.logo{
font-size:22px;
}

.menu-btn{
padding:10px 18px;
font-size:14px;
}

}
.header.scrolled{
    background:rgba(255,255,255,.97);
    backdrop-filter:blur(18px);
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.header.scrolled .menu a{
    color:#111827;
}

.header.scrolled .logo{
    color:#111827;
}
.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(37,211,102,.35);
    z-index:1000;
    transition:.3s ease;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    box-shadow:0 15px 35px rgba(37,211,102,.45);
}
.why-us{
    padding:120px 20px;
    background:#f8fafc;
}

.why-us h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
    color:#111827;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(249,115,22,.08);
}

.why-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#F97316,#EA580C);
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.why-card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.why-card i{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,#F97316,#EA580C);
    color:#fff;
    font-size:28px;
    box-shadow:0 10px 25px rgba(249,115,22,.35);
}

.why-card h3{
    margin-bottom:15px;
    color:#111827;
}

.why-card p{
    color:#6b7280;
    line-height:1.7;
}
.stats{
    padding:100px 20px;
    background:#111827;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.stat-card{
    text-align:center;
    color:#fff;
}

.stat-card h2{
    font-size:58px;
    color:#F97316;
    margin-bottom:15px;
    font-weight:800;
}

.stat-card p{
    font-size:20px;
    color:#e5e7eb;
}
.testimonials{
    padding:100px 20px;
    background:#fff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#f8fafc;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card p{
    line-height:1.8;
    color:#4b5563;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#F97316;
    margin-bottom:10px;
}
.map{
    margin-top:50px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.map iframe{
    display:block;
    width:100%;
    border:0;
}
.contact-form{
    max-width:700px;
    margin:50px auto 0;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
    font-family:inherit;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#F97316;
    box-shadow:0 0 0 3px rgba(249,115,22,.15);
}

.contact-form button{
    align-self:flex-start;
}
.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}
.gallery-item {
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,.35);
    transition: .4s;
}
.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#222;
}

@media (max-width:768px){

    .menu{
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#fff;
        display:none;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:25px 0;
        box-shadow:0 10px 25px rgba(0,0,0,.15);
    }

    .menu.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }

    .menu-btn{
        display:none;
    }
}
@keyframes heroZoom{

    0%{
        background-size:100%;
    }

    100%{
        background-size:110%;
    }

}
.hero-tag{
    display:inline-block;
    background:linear-gradient(135deg,#F97316,#EA580C);
    color:#fff;
    padding:12px 26px;
    border-radius:50px;
    font-weight:700;
    font-size:15px;
    letter-spacing:1px;
    margin-bottom:25px;
    box-shadow:0 15px 35px rgba(249,115,22,.30);
}
.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:25px;
    color:#fff;
    opacity:0;
    transition:.4s;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay h3{
    font-size:24px;
    margin-bottom:8px;
}

.gallery-overlay p{
    font-size:16px;
    color:#e5e7eb;
}
.seo-text{
    background:#fff;
    padding:80px 20px;
}

.seo-text h2{
    text-align:center;
    font-size:36px;
    color:#111827;
    margin-bottom:25px;
    font-family:'Poppins',sans-serif;
}

.seo-text p{
    max-width:900px;
    margin:auto;
    text-align:center;
    font-size:18px;
    line-height:1.9;
    color:#6b7280;
}
/* Güven Bölümü */

.trust-bar{
    background:#fff;
    padding:50px 20px;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.trust-item{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.trust-item:hover{
    transform:translateY(-8px);
}

.trust-item h3{
    margin-top:15px;
    font-size:20px;
    color:#333;
}

@media(max-width:768px){

.trust-grid{
    grid-template-columns:1fr 1fr;
}

}
.service-btn{
    display:inline-block;
    margin-top:25px;
    padding:12px 24px;
    background:#F97316;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.service-btn:hover{
    background:#EA580C;
    transform:translateY(-2px);
}
/* ==========================================
   ÖNCESİ / SONRASI
========================================== */

.before-after{
    padding:90px 0;
    background:#f8f9fb;
}

.before-after .section-title{
    text-align:center;
    margin-bottom:60px;
}

.compare-item{
    margin-bottom:70px;
}

.compare-item h3{
    text-align:center;
    font-size:28px;
    margin-bottom:25px;
    color:#222;
}

.compare-container{
    position:relative;
    max-width:950px;
    margin:40px auto;
    overflow:hidden;
    border-radius:22px;
    background:#111;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
    transition:.35s ease;
}
.compare-container:hover{
    transform:translateY(-6px) scale(1.01);
    box-shadow:0 30px 70px rgba(0,0,0,.28);
}
.compare-container img{
    display:block;
    width:100%;
    height:600px;
    object-fit:contain;
    background:#111;
    user-select:none;
    pointer-events:none;
}

.img-before-wrapper{
    position:absolute;
    top:0;
    left:0;
    width:50%;
    height:100%;
    overflow:hidden;
    border-right:4px solid #ff7a00;
    box-shadow:8px 0 20px rgba(255,122,0,.45);
}

.compare-slider{
    position:absolute;
    left:0;
    bottom:25px;
    width:100%;
    z-index:20;
    cursor:pointer;
    appearance:none;
    background:transparent;
}

.compare-slider::-webkit-slider-runnable-track{
    height:6px;
    background:rgba(255,255,255,.35);
    border-radius:50px;
}

.compare-slider::-webkit-slider-thumb{
    appearance:none;
    width:30px;
    height:30px;
    margin-top:-12px;
    border-radius:50%;
    background:linear-gradient(135deg,#F97316,#EA580C);
    border:4px solid #fff;
    box-shadow:0 0 18px rgba(249,115,22,.45);
    cursor:pointer;
    transition:.25s ease;
}

.compare-container::before{
    content:"ÖNCESİ";
    position:absolute;
    top:20px;
    left:20px;
    z-index:5;
    background:#ff7a00;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-weight:700;
    font-size:13px;
    backdrop-filter: blur(8px);
letter-spacing:1px;
text-transform:uppercase;
box-shadow:0 8px 25px rgba(0,0,0,.18);
transition:.3s;
}

.compare-container::after{
    content:"SONRASI";
    position:absolute;
    top:20px;
    right:20px;
    z-index:5;
    background:#111;
    color:#fff;
    border:2px solid #ff7a00;
    padding:8px 16px;
    border-radius:30px;
    font-weight:700;
    font-size:13px;
    backdrop-filter: blur(8px);
letter-spacing:1px;
text-transform:uppercase;
box-shadow:0 8px 25px rgba(0,0,0,.18);
transition:.3s;
}

@media(max-width:768px){

    .compare-container img{
        height:420px;
    }

    .compare-slider::-webkit-slider-thumb{
        width:22px;
        height:22px;
        margin-top:-8px;
    }
}
.compare-handle{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:70px;
    height:70px;
    border-radius:50%;
    background:#ff7a00;
    border:4px solid #fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    font-weight:bold;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
    pointer-events:none;
    z-index:30;
    transition:.2s;
    background:linear-gradient(135deg,#F97316,#EA580C);
}

.compare-container:hover .compare-handle{
    transform:translate(-50%,-50%) scale(1.08);
}
.project-info{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin:15px 0 25px;
}

.project-info span{
    display:flex;
    align-items:center;
    gap:6px;
    background:#fff7ef;
    color:#F97316;
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    border:1px solid rgba(249,115,22,.2);
}
.compare-handle i{
    font-size:24px;
    color:#fff;
}
footer{
    background:#111827;
    color:#fff;
    margin-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    padding:70px 0 40px;
}

.footer-box h2,
.footer-box h3{
    color:#fff;
    margin-bottom:20px;
}

.footer-box h2{
    color:#F97316;
}

.footer-box p,
.footer-box li{
    color:#d1d5db;
    line-height:1.8;
}

.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box li{
    margin-bottom:12px;
    transition:.3s;
}

.footer-box li:hover{
    color:#F97316;
    padding-left:6px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding:22px;
    color:#9ca3af;
    font-size:14px;
}
/* Sayfa Animasyonları */

.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}
.floating-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    z-index:9999;
    transition:.3s ease;
    animation:whatsappPulse 2s infinite;
}

.floating-whatsapp:hover{
    transform:scale(1.12);
}

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.5);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}
.floating-whatsapp{
    border:4px solid red !important;
}