
:root {
    --bg: #0a0a0a; /* ana arka plan */
    --card: #121212; /* kart arka planı */
    --muted: #a3a3a3; /* metin ikincil */
    --text: #e5e5e5; /* metin */
    --line: #262626; /* sınır çizgisi */
    --red: #ef4444; /* vurgu kırmızı */
    --red-deep: #7f1d1d; /* koyu kırmızı */
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    background: var(--bg);
    color: var(--text);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Arka plan alev ışıması */
.flame-backdrop {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(600px 200px at 20% 10%, rgba(239,68,68,.15) 0%, transparent 60%), radial-gradient(800px 280px at 80% 90%, rgba(127,29,29,.12) 0%, transparent 65%);
    animation: glow 12s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: blur(0px);
    }

    to {
        filter: blur(2px) brightness(1.05);
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
    background: rgba(0,0,0,.5);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    letter-spacing: .06em;
}

.flame {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: conic-gradient(from 180deg at 50% 50%, #fca5a5, #ef4444, #991b1b, #fca5a5);
    border-radius: 40% 40% 60% 60%/40% 40% 70% 70%;
    box-shadow: 0 0 16px rgba(239,68,68,.45);
}

.nav-links {
    display: none;
    gap: 24px;
    font-size: 14px;
}

.cta {
    background: rgba(239,68,68,.9);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(127,29,29,.3);
}

    .cta:hover {
        background: #ef4444;
    }

.nav-links a {
    color: #fff;
    margin: 0 8px;
    text-decoration: none;
    font-size: 14px;
}

    .nav-links a.phone {
        font-weight: 600;
    }

.nav-links i {
    font-size: 16px;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

/* Section spacing */
section {
    padding: 64px 0;
}

h1, h2, h3 {
    margin: 0;
}

h2 {
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 700;
}

p.lead {
    color: #d4d4d4;
}

/* Carousel */
/* ========== Carousel (final, content untouched) ========== */
/* ========== Carousel (final, content untouched) ========== */
.carousel {
    position: relative;
    height: min(70vh, 780px);
    min-height: 520px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #0b0b0b;
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
    isolation: isolate;
}

/* Slaytlar */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    pointer-events: none;
    z-index: 0;
}

    .slide.active {
        opacity: 1;
        pointer-events: auto;
        z-index: 1;
    }

    /* Arka plan görseli */
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 0;
    }

    /* Overlay */
    .slide::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,.35), rgba(0,0,0,.15));
        z-index: 0;
        pointer-events: none;
    }

    /* Köşe efektleri */
    .slide .corners {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(1200px 480px at 0% 100%, rgba(220,38,38,.25) 0%, transparent 60%), radial-gradient(800px 320px at 100% 0%, rgba(185,28,28,.2) 0%, transparent 60%);
        z-index: 0;
    }

/* İçerik (dokunmadım) */
.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    color: #fff;
    /* z-index burada neyse kalsın */
}

.slide-inner {
    max-width: 640px;
    padding: 0 24px;
}

/* Rozet */
.badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: #fecaca;
    border: 1px solid rgba(185,28,28,.4);
    background: rgba(127,29,29,.2);
    padding: 6px 10px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

/* Metin kontrastı */
.slide h1 {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,.85);
}

.slide p {
    margin-top: 12px;
    color: #f5f5f5;
    font-size: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,.75);
}

/* Aksiyon butonları */
.actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
}

.btn-primary {
    background: rgba(239,68,68,.9);
    color: #fff;
    box-shadow: 0 10px 30px rgba(127,29,29,.35);
}

    .btn-primary:hover {
        background: #ef4444;
    }

.btn-ghost {
    border: 1px solid #404040;
    background: rgba(0,0,0,.35);
    color: #e5e5e5;
}

    .btn-ghost:hover {
        background: rgba(0,0,0,.55);
    }

/* Kontroller – içerikten bağımsız hep en üstte */
.controls {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    pointer-events: none;
    z-index: 50; /* slide-content’in üstünde */
}

.ctrl {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,.45);
    border: 1px solid #404040;
    cursor: pointer;
}

    .ctrl:hover {
        background: rgba(0,0,0,.65);
    }

    .ctrl .icon {
        width: 22px;
        height: 22px;
    }

/* Dots (göstergeler) */
.dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 45; /* içerikten üstün, kontrollerden düşük */
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #525252;
    border: none;
    cursor: pointer;
}

    .dot.active {
        background: var(--red);
    }

/* Güvenlik */
.slide:not(.active) {
    pointer-events: none;
}




/* Types */
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid rgba(185,28,28,.4);
    background: rgba(127,29,29,.15);
    color: #fecaca;
    font-size: 12px;
    border-radius: 999px;
}

.grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 640px) {
    .grid.sm-2 {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (min-width: 1024px) {
    .grid.lg-3 {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

.card {
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(18,18,18,.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
    transform: translateY(6px);
    opacity: 0;
    transition: transform .6s ease, opacity .6s ease;
}

    .card.reveal {
        transform: none;
        opacity: 1;
    }

.card-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

    .card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
    }

.card:hover .card-media img {
    transform: scale(1.05);
}

.card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.2), transparent);
}

.card-body {
    padding: 18px;
}

.card h3 {
    font-size: 18px;
    font-weight: 700;
}

.muted {
    color: #cfcfcf;
    font-size: 14px;
}

.row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.tag {
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fecaca;
    border: 1px solid rgba(185,28,28,.4);
    background: rgba(127,29,29,.1);
    padding: 4px 8px;
    border-radius: 8px;
}

.link {
    color: #fca5a5;
    font-weight: 600;
}

    .link:hover {
        color: #fecaca;
    }

/* Why Us */
.two-col {
    display: grid;
    gap: 32px;
}

@media (min-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
    }
}

.metrics {
    position: relative;
    border: 1px solid var(--line);
    background: rgba(18,18,18,.7);
    border-radius: 24px;
    padding: 24px;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(50px);
    opacity: .4;
}

    .blob.one {
        width: 280px;
        height: 280px;
        left: -80px;
        top: -80px;
        background: rgba(185,28,28,.35);
        border-radius: 50%;
    }

    .blob.two {
        width: 300px;
        height: 300px;
        right: -90px;
        bottom: -70px;
        background: rgba(127,29,29,.35);
        border-radius: 50%;
    }

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
}

.metric {
    text-align: center;
    border: 1px solid var(--line);
    background: rgba(0,0,0,.45);
    border-radius: 16px;
    padding: 18px;
    transform: translateY(8px);
    opacity: 0;
    transition: .6s ease;
}

    .metric.reveal {
        transform: none;
        opacity: 1;
    }

    .metric .val {
        font-size: 26px;
        font-weight: 700;
    }

    .metric .key {
        font-size: 12px;
        color: #a3a3a3;
        margin-top: 4px;
    }

.why-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.why-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
    transform: translateX(-12px);
    opacity: 0;
    transition: .5s ease;
}

    .why-item.reveal {
        transform: none;
        opacity: 1;
    }

.check {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(127,29,29,.35);
    color: #fecaca;
    border: 1px solid rgba(185,28,28,.4);
}

/* Gallery */
.gallery {
    display: grid;
    gap: 14px;
}

@media (min-width: 640px) {
    .gallery {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (min-width: 768px) {
    .gallery {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

.gal-item {
    border: 1px solid var(--line);
    background: rgba(18,18,18,.6);
    border-radius: 16px;
    overflow: hidden;
    transform: translateY(6px);
    opacity: 0;
    transition: .6s ease;
}

    .gal-item.reveal {
        transform: none;
        opacity: 1;
    }

    .gal-item img {
        aspect-ratio: 4/3;
        object-fit: cover;
        width: 100%;
    }

/* Contact */
.contact-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-card {
    border: 1px solid var(--line);
    background: rgba(18,18,18,.7);
    border-radius: 22px;
    padding: 24px;
}

.contact-list {
    margin-top: 16px;
    display: grid;
    gap: 10px;
    font-size: 14px;
    color: #d4d4d4;
}

.contact-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.icon {
    width: 18px;
    height: 18px;
    color: #e5e5e5;
    opacity: .9;
}

.field {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #3f3f46;
    background: rgba(0,0,0,.35);
    color: #fff;
    outline: none;
    font-size: 14px;
}

    .field::placeholder {
        color: #8a8a8a;
    }

    .field:focus {
        border-color: #7f1d1d;
        box-shadow: 0 0 0 3px rgba(239,68,68,.25);
    }

textarea.field {
    resize: vertical;
}

/* Footer */
footer {
    border-top: 1px solid var(--line);
    background: rgba(0,0,0,.35);
}

.footer-grid {
    display: grid;
    gap: 20px;
    padding: 36px 0;
}

@media (min-width:1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

.subtle {
    color: #a3a3a3;
    font-size: 12px;
    text-align: center;
    border-top: 1px solid var(--line);
    padding: 16px 0;
}

/* Scroll reveal base */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .6s ease, transform .6s ease;
}

    .reveal-on-scroll.reveal {
        opacity: 1;
        transform: none;
    }

/* Anchor offset for sticky header */
:target {
    scroll-margin-top: 84px;
}

/* ===================== GALLERY GRID ===================== */
.gallery {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    padding: 20px;
}

/* ===================== THUMBNAILS ===================== */
.gal-item {
    height: 220px; /* sabit yükseklik */
    border-radius: 12px;
    overflow: hidden;
    background: #000; /* boş alan olursa siyah */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(0,0,0,.25);
}

    .gal-item .photo,
    .video-thumb,
    .video-thumb .thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 12px;
    }

    /* Fotoğraflar hover efekti */
    .gal-item .photo {
        cursor: zoom-in;
        transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
        filter: brightness(.98);
        box-shadow: 0 6px 24px rgba(0,0,0,.18);
    }

        .gal-item .photo:hover {
            transform: scale(1.015);
            filter: brightness(1);
            box-shadow: 0 8px 28px rgba(0,0,0,.28);
        }

/* ===================== VIDEO THUMB ===================== */
.video-thumb {
    position: relative;
    aspect-ratio: auto;
    cursor: pointer;
    background: #0b0b0b;
}

    .video-thumb .thumb {
        filter: brightness(0.9);
        transition: transform .25s ease, filter .25s ease;
    }

    .video-thumb:hover .thumb {
        transform: scale(1.02);
        filter: brightness(1);
    }

/* ===================== PLAY BADGE ===================== */
.play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, #e50914 0%, #990000 85%);
    border: 2px solid rgba(255,255,255,.25);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.55);
    pointer-events: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

    .play-badge svg {
        width: 50%;
        height: 50%;
        fill: #fff;
    }

.video-thumb:hover .play-badge {
    transform: translate(-50%,-50%) scale(1.1);
    background: radial-gradient(circle at center, #ff1a1a 0%, #cc0000 90%);
    box-shadow: 0 10px 28px rgba(255, 0, 0, 0.65);
}

/* ===================== MODAL (ortak) ===================== */
.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1000;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    display: grid;
    place-items: center; /* her zaman tam ortada */
}

    .video-modal.show {
        display: grid;
        opacity: 1;
        visibility: visible;
    }

/* ===================== MODAL CONTENT (video default) ===================== */
.video-modal-content {
    width: min(720px, 85vw);
    max-width: 85vw;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.7);
    position: relative;
    overflow: visible; /* close butonu dışarı taşabilsin */
    transform: scale(0.9);
    transition: transform .3s ease;
}

.video-modal.show .video-modal-content {
    transform: scale(1);
}

#modalVideo {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

/* ===================== FOTOĞRAF MODU (full cover) ===================== */
.video-modal-content.image-mode {
    aspect-ratio: auto;
    width: min(92vw, 1200px);
    height: 88vh;
    max-height: 88vh;
    display: grid;
    place-items: center;
    padding: 0;
    background: #000;
    border-radius: 16px;
    overflow: hidden; /* taşan görseli kırp */
}

#modalImage {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* boşluk yok, kırp */
    background: #000;
}

/* ===================== CLOSE BUTTON ===================== */
.close-modal {
    position: absolute;
    top: -15px;
    right: -15px;
    line-height: 1;
    border: 2px solid #fff;
    background: rgba(255,255,255,.95);
    color: #000;
    font-size: 20px;
    font-weight: 700;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    transition: transform .2s ease, background .2s ease;
}

    .close-modal:hover {
        background: #fff;
        transform: scale(1.1);
    }

/* ===================== BODY LOCK ===================== */
body.modal-open {
    overflow: hidden;
}
/* Konteyner: ortalama ve üst boşluk */
.gallery-actions {
    display: flex;
    justify-content: center;
    margin-top: 0;
    padding-bottom: 20px;
}

.btn-offer {
    background-color: rgba(239, 68, 68, .9);
    color: #fff;
    border: none;
    border-radius: 8px; /* yuvarlak köşe */
    padding: 14px 28px; /* daha geniş */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px; /* yazı ve ikon arası boşluk */
    transition: background .25s ease, transform .2s ease;
}

    .btn-offer svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: #fff; /* ikon beyaz */
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .btn-offer:hover {
        background-color: #c20810; /* daha koyu kırmızı */
        transform: translateY(-2px); /* hover'da hafif kaldır */
    }

    .btn-offer:active {
        background-color: #990000;
        transform: translateY(0);
    }
/* === Ana sayfa iletişim formu: devre dışı katmanı === */
.contact-card {
    position: relative;
    border-radius: 16px; /* köşeler maskeyle hizalansın */
    overflow: hidden; /* maske taşmasın */
}

    /* Form içeriğini flu yap ve tıklanamaz kıl (mask hariç) */
    .contact-card > *:not(.form-disabled-mask) {
        filter: blur(2px) saturate(.9);
        opacity: .75;
        pointer-events: none;
        user-select: none;
    }

/* Üstteki karartma + mesaj kabı */
.form-disabled-mask {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
}

    /* karartma ve hafif arkaplan bluru */
    .form-disabled-mask::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.35);
        backdrop-filter: blur(1.5px);
        border-radius: inherit;
    }

/* mesaj kutusu */
.form-disabled-msg {
    position: relative;
    background: rgba(17,17,17,.96);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
    max-width: 520px;
    box-shadow: 0 8px 32px rgba(0,0,0,.35);
}

    .form-disabled-msg strong {
        color: #fff;
        font-weight: 700;
    }

    .form-disabled-msg a {
        text-decoration: underline;
    }
