@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* 🔥 ARKA PLAN TÜM SAYFA */
body {
    background: url("image/arka.png") center/cover no-repeat fixed;
    background-color: #000;
    color: #fff;
}

/* NAVBAR */
.navbar {
    width: 100%;
    padding: 18px 60px;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: gold;
}

.navbar nav a {
    margin-left: 24px;
    color: #ddd;
    text-decoration: none;
    transition: .3s;
}

.navbar nav a:hover {
    color: gold;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
}

/* KARARTMA */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero h1 span {
    color: gold;
}

.hero p {
    margin-top: 15px;
    color: #ccc;
}

.hero-buttons {
    margin-top: 30px;
}

.btn-primary {
    background: gold;
    color: #000;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    border: 2px solid gold;
    color: gold;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    margin-left: 10px;
}

/* GENEL SECTIONS */
section {
    padding: 120px 80px;
    text-align: center;
}

h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

h2 span {
    color: gold;
}

/* HİZMETLER */
.service-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.service-card {
    width: 260px;
    padding: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    font-size: 20px;
}

/* SÜREÇ */
.process-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.step {
    background: rgba(255,255,255,0.06);
    padding: 30px 40px;
    border-radius: 10px;
}

/* CTA */
.cta {
    background: gold;
    color: #000;
    padding: 80px;
    border-radius: 20px 20px 0 0;
}

.cta .btn-primary {
    background: #000;
    color: gold;
}

/* 🔥 SCROLL ANİMASYONU — sadece aşağıdan yukarı */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* KONUM TAG */
.location-tag {
    color: #ffd700;
    font-size: 30px;
    margin-bottom: 15px;
    opacity: 0.85;
    text-align: center;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ====== ALTIN ÇİZGİLİ BADGE ====== */

.badge-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.badge {
    padding: 14px 38px;
    font-size: 20px;
    color: gold;
    font-weight: 500;
    position: relative;
    letter-spacing: 0.5px;
    text-align: center;

    /* giriş animasyonu */
    opacity: 0;
    transform: translateY(25px);
    transition: 0.7s ease-out;
}

.badge.active {
    opacity: 1;
    transform: translateY(0);
}

/* Çizgi başlangıç (0 genişlik) */
.badge::before,
.badge::after {
    content: "";
    position: absolute;
    top: 50%;
    height: 2px;
    width: 0;
    opacity: 0;
    transition: width 0.5s ease-out 0.35s, opacity 0.4s ease-out 0.35s;
}

/* Sol çizgi */
.badge::before {
    left: -40px;
    background: linear-gradient(to right, transparent, gold);
}

/* Sağ çizgi */
.badge::after {
    right: -40px;
    background: linear-gradient(to left, transparent, gold);
}

/* Çizgiler aktif olunca açılır */
.badge.active::before,
.badge.active::after {
    width: 35px;
    opacity: 0.8;
}

/* ===== PREMIUM HİZMET TASARIMI ===== */

.service-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.service-box {
    width: 300px;
    padding: 45px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(4px);
    transition: 0.4s ease;
    position: relative;
}

/* Gold glow efekti */
.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.25);
    border-color: gold;
}

/* İKON */
.service-box .icon {
    font-size: 50px;
    margin-bottom: 18px;
    color: gold;
}

/* Başlık */
.service-box h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 12px;
}

/* Açıklama */
.service-box p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
}

/* Reveal animasyon uyumu */
.service-box.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s ease;
}

.service-box.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Neden Biz başlık */
.why-header {
    padding-top: 150px;
    text-align: center;
}

.why-header h1 {
    font-size: 48px;
    font-weight: 700;
}
.why-header span {
    color: gold;
}
.why-header p {
    margin-top: 10px;
    font-size: 18px;
    color: #ccc;
}

/* Kartları yukarı çekmek */
.contact-list {
    margin-top: -40px;  /* Yukarı çekiyor */
}


/* KART SİSTEMİ */
.why-cards {
    padding: 80px 60px;
    display: flex;
    justify-content: center;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(2, 350px);
    gap: 30px;
}

.why-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.25);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}

/* Hover ışık efekti */
.why-box::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 250%;
    height: 250%;
    background: radial-gradient(circle, rgba(255,215,0,0.2), transparent 70%);
    transform: rotate(25deg);
    transition: 0.5s;
    opacity: 0;
}

.why-box:hover::before {
    top: -50%;
    left: -50%;
    opacity: 1;
}

.why-box:hover {
    transform: translateY(-6px);
    border-color: gold;
}

/* ikon */
.why-box .icon {
    font-size: 42px;
    margin-bottom: 18px;
}

/* Yazılar */
.why-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: gold;
}
.why-box p {
    font-size: 15px;
    color: #ddd;
}


/* Responsive */
@media(max-width: 800px){
    .why-container {
        grid-template-columns: 1fr;
    }
}

/* === 2 Süreç Kutu Tasarımı === */

.process-two {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 80px;
    flex-wrap: wrap;
}

.process-box {
    width: 450px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.2);
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 20px;
}

.process-box h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 26px;
    color: gold;
}


/* Timeline içerisi */
.process-box .timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.process-box .timeline-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,215,0,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: gold;
}

.process-box .timeline-content h3 {
    color: gold;
    font-size: 20px;
}

.process-box .timeline-content p {
    color: #ccc;
    font-size: 14px;
}

.timeline-icon {
    width: 90px;              
    height: 90px;              
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,215,0,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon img {
    width: 55px;               
    height: 55px;
    object-fit: contain;
}



/* ===============================
   📱 MOBİL UYUM - max-width: 768px
================================ */
@media (max-width: 768px) {

    /* GENEL */
    body {
        background-attachment: scroll;
        overflow-x: hidden;
    }

    section {
        padding: 80px 25px;
        text-align: center;
    }

    h1 {
        font-size: 32px !important;
        line-height: 40px;
    }

    h2 {
        font-size: 26px !important;
    }

    p {
        font-size: 15px;
    }

    /* NAVBAR */
    .navbar {
        padding: 14px 22px;
    }

    .logo {
        font-size: 22px;
    }

    /* Mobil Menü */
    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
        background: rgba(0,0,0,0.55);
        backdrop-filter: blur(8px);
        padding: 15px 0;
        border-radius: 10px;
        gap: 12px;
    }

    nav a {
        margin-left: 0;
        padding: 10px 0;
        font-size: 18px;
    }

    
    .mobile-menu-icon {
        display: block;
        font-size: 32px;
        cursor: pointer;
        user-select: none;
    }


    /* HERO */
    .hero {
        flex-direction: column;
        padding: 100px 20px 60px;
        height: auto;
    }

    .hero h1 {
        font-size: 34px !important;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .location-tag {
        font-size: 18px;
    }

    /* BADGE */
    .badge-list {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .badge {
        font-size: 17px;
        padding: 12px 20px;
    }

    /* HİZMETLER */
    .service-grid {
        flex-direction: column;
        gap: 18px;
        padding: 0 20px;
    }

    .service-card,
    .service-box {
        width: 100% !important;
        max-width: 350px;
        margin: 0 auto;
    }

    /* SÜREÇ */
    .process-steps {
        flex-direction: column;
        gap: 16px;
        padding: 0 20px;
    }

    .step {
        width: 100%;
        padding: 20px;
    }

    /* 2 KUTU SÜREÇ */
    .process-two {
        flex-direction: column;
        padding: 40px 25px;
    }

    .process-box {
        width: 100% !important;
        margin-bottom: 25px;
    }

    .process-box .timeline-item {
        flex-direction: row;
        gap: 15px;
    }

    /* WHY CARDS */
    .why-cards {
        padding: 50px 20px;
    }

    .why-container {
        grid-template-columns: 1fr !important;
        padding: 0 10px;
    }

    .why-box {
        width: 100%;
    }

    /* CTA */
    .cta {
        padding: 60px 30px;
        text-align: center;
    }
}

@media (min-width: 769px) {
    .mobile-menu-icon {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

@media (max-width: 769px) {
    #navMenu {
        position: absolute;       
        top: 60px;               
        right: 20px;
        width: 70%;
        padding: 20px;
        background: rgba(0,0,0,0.85);
        backdrop-filter: blur(8px);
        border-radius: 12px;
        display: none;
        flex-direction: column;
        gap: 18px;
        z-index: 99999;           /* her şeyin üstünde */
        animation: menuFade 0.2s ease;
    }
}

@keyframes menuFade {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    user-select: none;
}

#transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
    z-index: 9999;
}

#transition.active {
    opacity: 1;
    pointer-events: all;
}

.badge-icon {
    width: 40px;
    height: 40px;
    margin-right: 8px;
    vertical-align: middle;
    filter: drop-shadow(0 0 2px gold);
}

.references{
    padding:80px 20px;
    text-align:center;
}

.references h2{
    font-size:32px;
    margin-bottom:40px;
}

.reference-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.reference-card{
        background:linear-gradient(
        180deg,
        #0a0f16 0%,
        #02060c 100%
    );
    border:1px solid rgba(216,177,90,.15);
    padding:25px;
    border-radius:18px;
    text-decoration:none;
    transition:.35s ease;
    border:1px solid rgba(255,255,255,.08);
}

.reference-card img{
    height:70px;
    object-fit:contain;
    margin-bottom:15px;
}

.reference-card h3{
    color:#ffffff;
}

.reference-card p{
    color:rgba(255,255,255,.75);
}

.reference-card:hover{
    transform:translateY(-8px);
    border-color:#d8b15a;
    box-shadow:0 15px 40px rgba(0,0,0,.45);
}

.ref-link{
    display:inline-block;
    margin-top:12px;
    font-size:14px;
    color:#d8b15a;
    text-decoration:none;
    letter-spacing:.3px;
}

.ref-link:hover{
    opacity:.8;
    text-decoration:underline;
}
