:root {
    --bg: #fbfbfb;
    --panel: #ffffff;
    --ink: #131313;
    --muted: #6f6f6f;
    --red: #d72638;
    --red-2: #ff5a5f;
    --black: #0f0f10;
    --radius: 16px;
    --shadow: 0 14px 40px rgba(0, 0, 0, .08);
    --grad: linear-gradient(135deg, var(--red), var(--red-2));
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(1200px, 92%);
    margin-inline: auto
}

.section {
    padding: 68px 0
}

h1,
h2,
h3 {
    margin: 0 0 14px 0
}

h1 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    font-weight: 800
}

h2 {
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 800
}

h3 {
    font-size: clamp(18px, 2.4vw, 22px);
    font-weight: 700
}

p {
    margin: 0 0 10px 0;
    color: var(--muted);
    line-height: 1.75
}

.btn {
    display: inline-flex;
    gap: .6rem;
    align-items: center;
    padding: .9rem 1.3rem;
    border-radius: 999px;
    background: var(--grad);
    color: #fff;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    box-shadow: var(--shadow)
}

.btn.alt {
    background: transparent;
    border: 2px solid var(--red);
    color: var(--red)
}

.btn:focus-visible {
    outline: 3px solid #000;
    outline-offset: 2px
}

.center {
    text-align: center
}

/* NAV */
.nav {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(251, 251, 251, .9);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #ececec
}

.nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    padding-inline: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-weight: 900
}

.logo-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--red);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08)
}

.nav ul {
    display: flex;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: row;
}

.nav a {
    font-weight: 700
}

.nav a:hover {
    color: var(--red)
}

.nav-right {
    margin-left: auto;
    /* menü bloğunu sağa it */
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

/* kapsül butonlar */
.icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .6rem .9rem;
    border-radius: 999px;
    background: #fff;
    border: 1.5px solid #eee;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .06);
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
    transition: transform .15s, border-color .15s, color .15s;
}

.icon-btn i {
    font-size: 15px
}

.icon-btn:hover {
    transform: translateY(-1px);
    border-color: var(--red);
    color: var(--red)
}

.icon-btn.call i {
    color: var(--red)
}

/* telefon ikonu kırmızı */

/* Instagram renk geçişi (ikon için) */
.icon-btn.ig i {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976 45%, #962fbf 70%, #4f5bd5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* 🔴 Tema aksanları */
.nav {
    border-bottom: 3px solid var(--red);
}

.section h2 {
    position: relative;
    padding-bottom: 8px;
}

.section h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 68px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), var(--red-2));
}

footer {
    border-top: none;
}

footer::before {
    content: "";
    display: block;
    height: 6px;
    width: 100%;
    background: linear-gradient(135deg, var(--red), var(--red-2));
    margin-top: -6px;
}

/* HERO */
.hero {
    padding: 90px 0;
    background:
        radial-gradient(90% 120% at 100% 0, rgba(215, 38, 56, .08), transparent 60%),
        radial-gradient(90% 120% at 0 100%, rgba(0, 0, 0, .06), transparent 60%)
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center
}

.media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #000
}

.media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.badge {
    position: absolute;
    left: 16px;
    top: 16px;
    background: var(--red);
    color: #fff;
    padding: .42rem .75rem;
    border-radius: 999px;
    font: 700 .8rem/1 Poppins, sans-serif;
    letter-spacing: .2px
}

/* NEDEN BİZ */
.grid {
    display: grid;
    gap: 24px
}

.k4 {
    grid-template-columns: repeat(4, 1fr)
}

.card {
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden
}

.feature {
    padding: 22px
}

.feature .icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--black);
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
    border: 2px solid var(--red)
}

/* GALERİ (grid sadece başka yerlerde kullanırsan) */
.gallery {
    grid-template-columns: repeat(4, 1fr)
}

.gallery .card {
    transition: transform .25s ease;
    cursor: zoom-in
}

.gallery .card:hover {
    transform: translateY(-6px)
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover
}

/* KOLAJ 2x4 */
.collage-2x4 {
    margin-top: 16px;
    display: grid;
    gap: 28px
}

.collage-row {
    display: grid;
    gap: 28px
}

.collage-top {
    grid-template-columns: repeat(2, 1fr)
}

.collage-bottom {
    grid-template-columns: repeat(4, 1fr)
}

.collage-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #0a0a0a
}

.collage-item .img {
    width: 100%;
    height: 100%;
    object-position: center;
    transition: transform .3s ease
}

.collage-item:hover .img {
    transform: scale(1.02)
}

/* Üst: dikeylerin oranı ve dolumu */
.collage-top .collage-item {
    aspect-ratio: 3/4
}

.collage-top .img {
    object-fit: cover;
    object-position: center 20%
}

/* Alt 4’lü: dolu görünüm, hafif daha yüksek */
.collage-bottom .collage-item {
    height: 240px
}

.collage-bottom .img {
    object-fit: cover
}

/* GALERİ */
.gallery {
    grid-template-columns: repeat(4, 1fr)
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block
}

.gallery .card {
    transition: transform .25s ease;
    cursor: zoom-in
}

.gallery .card:hover {
    transform: translateY(-6px)
}


/* HARİTA */
.map-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--panel)
}

.map-top {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px
}

.map-top i {
    color: var(--red)
}

.map iframe {
    width: 100%;
    height: 380px;
    border: 0
}

/* FOOTER */
footer {
    color: var(--muted)
}

footer .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow);
    color: #111
}

footer .social a:hover {
    background: var(--red);
    color: #fff
}

footer .sig {
    font-weight: 700;
    color: var(--ink)
}

footer .sig span {
    color: var(--red)
}

/* Responsive */
@media (max-width:1000px) {
    .hero-wrap {
        grid-template-columns: 1fr
    }

    .k4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr)
    }

    .collage-top {
        grid-template-columns: 1fr
    }

    .collage-bottom {
        grid-template-columns: repeat(2, 1fr)
    }

    .carousel-track {
        grid-auto-columns: calc((100% - 16px)/2);
    }

    .carousel-prev {
        left: -40px
    }

    .carousel-next {
        right: -40px
    }
}

@media (max-width:560px) {

    .k4,
    .gallery,
    .collage-bottom {
        grid-template-columns: 1fr
    }

    .collage-bottom .collage-item {
        height: 220px
    }

    .badge {
        top: 12px;
        left: 12px
    }

    .carousel-track {
        grid-auto-columns: 100%;
    }

    .carousel-btn {
        display: none;
    }

    /* mobilde oklar kapalı, swipe yeter */
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }
}

/* Mobilde metinleri gizle, sadece ikon kalsın */
@media (max-width:900px) {
    .icon-btn span {
        display: none
    }

    .icon-btn {
        padding: .55rem
    }

    .nav-right {
        gap: 14px
    }

    .nav ul {
        gap: 16px
    }
}

/* Basit video modal */
.vmodal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999
}

.vmodal.is-open {
    display: block
}

.vmodal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(2px)
}

.vmodal__dialog {
    position: relative;
    z-index: 1;
    margin: 4vh auto;
    width: min(960px, 92%);
    background: #000;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
    overflow: hidden
}

.vmodal__video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 78vh;
    background: #000
}

.vmodal__close {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    background: rgba(0, 0, 0, .45);
    font-size: 28px;
    line-height: 38px;
    z-index: 2;
}

.vmodal__close:hover {
    background: rgba(0, 0, 0, .65)
}

/* === HEADER MOBIL DÜZELTME === */
@media (max-width: 860px) {
    .nav .wrap {
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        padding: 10px 14px 14px 14px;
        gap: 10px;
    }

    .logo {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .logo-img {
        width: 72px;
        height: 72px;
    }

    .nav-right {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .nav-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .icon-btn {
        padding: 8px 10px;
        font-size: 14px;
    }

    .nav ul {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 0;
        margin: 0;
    }
}

/* 560px altı: sadece ikonları göster */
@media (max-width: 560px) {
    .icon-btn span {
        display: none;
    }

    .icon-btn {
        padding: 8px;
        width: 42px;
        height: 42px;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery .card img {
        height: auto !important;
        width: 100%;
        object-fit: cover;
    }


    .collage-bottom .collage-item {
        height: auto !important;
        aspect-ratio: 4 / 3;
    }


    .media img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }
}


/* Body scroll kilidi */
.body-lock {
    overflow: hidden
}

.section h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 68px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), var(--red-2));
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: Poppins;
    transition: border .2s, box-shadow .2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(215, 38, 56, .15);
    outline: none;
}

.contact-form h3 {
    margin-bottom: 12px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.btn {
    transition: transform .2s;
}

.btn:hover {
    transform: scale(1.05);
}

footer {
    border-top: none;
    color: var(--muted);
    text-align: center;
}

footer nav.nav {
    border: none !important;
}

footer nav.nav ul.custom-style {
    flex: 1 1 auto !important;
    justify-content: flex-end !important;

}