*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

button {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    color: inherit
}

a {
    text-decoration: none;
    color: inherit
}

body {
    font-family: Poppins, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans";
    background: #0E0E10;
    color: #F5F5F7;
    line-height: 2;
}


/* ========== HEADER / NAV ========== */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 0 40px;
    background: rgba(14, 14, 16, .55);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

@media screen and (max-width:992px) {
    header {
        padding: 0 20px;
    }
}


/* removed header text-dot decoration */

nav {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}


/* Checkbox gizli */

.hidden {
    display: none;
}


/* Hamburger: header içinde, tam ortalı */

.nav-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: block;
    cursor: pointer;
    z-index: 1200;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    transition: background .2s ease, box-shadow .2s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
}


/* Çubuklar: eşit genişlikte, merkezden X'e döner */

.nav-btn i {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    background: #FFF;
    border-radius: 2px;
    transform-origin: center;
    transition: transform .28s ease, opacity .22s ease;
}

.nav-btn .first {
    transform: translate(-50%, -50%) translateY(-8px);
}

.nav-btn .second {
    transform: translate(-50%, -50%);
}

.nav-btn .third {
    transform: translate(-50%, -50%) translateY( 8px);
}


/* Mobil overlay (kapalı) */

.nav-wrapper {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(14, 14, 16, .78), rgba(14, 14, 16, .88));
    backdrop-filter: blur(16px);
    transition: opacity .22s ease, z-index .22s step-end;
}

@media screen and (max-width:992px) {
    .nav-wrapper {
        height: 100vh;
    }
}

.nav-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(900px 420px at 70% 0%, rgba(229, 195, 109, .10), transparent 60%), radial-gradient(700px 320px at 20% 100%, rgba(201, 166, 70, .10), transparent 60%);
}

.nav-wrapper ul {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 24px;
    margin: 0;
    list-style: none;
}

.nav-wrapper li {
    text-align: right;
    margin: 0 0 12px 0;
}

.nav-wrapper a {
    display: inline-block;
    padding: 12px 10px;
    border-radius: 12px;
    color: #EDEDF2;
    font-size: 12.5px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-16px);
    transition: transform .22s ease, opacity .22s ease, background .2s ease;
}

@media screen and (max-width: 992px) {
    .nav-wrapper li {
        margin: 0 0 42px 0;
    }
    .nav-wrapper a {
        font-size: 22px;
    }
}

.nav-wrapper a:hover {
    background: linear-gradient(135deg, rgba(201, 166, 70, .16), rgba(229, 195, 109, .20));
}

.nav-wrapper ul li:nth-child(1) a {
    transition-delay: .1s;
}

.nav-wrapper ul li:nth-child(2) a {
    transition-delay: .2s;
}

.nav-wrapper ul li:nth-child(3) a {
    transition-delay: .3s;
}

.nav-wrapper ul li:nth-child(4) a {
    transition-delay: .4s;
}

.nav-wrapper ul li:nth-child(5) a {
    transition-delay: .5s;
}

.nav-wrapper ul li:nth-child(6) a {
    transition-delay: .6s;
}


/* Checkbox açıkken: overlay ve X */

#nav:checked~.nav-btn .first {
    transform: translate(-50%, -50%) rotate(45deg);
}

#nav:checked~.nav-btn .second {
    opacity: 0;
}

#nav:checked~.nav-btn .third {
    transform: translate(-50%, -50%) rotate(-45deg);
}

#nav:checked~.nav-wrapper {
    z-index: 1100;
    opacity: 1;
    pointer-events: auto;
    transition: opacity .22s ease, z-index .22s step-start;
}

#nav:checked~.nav-wrapper a {
    opacity: 1;
    transform: translateX(0);
}


/* Masaüstü (≥992px): yatay menü, hamburger gizli */

@media (min-width:992px) {
    .nav-btn {
        display: none;
    }
    .nav-wrapper {
        position: static;
        inset: auto;
        z-index: auto;
        opacity: 1;
        background: transparent;
        backdrop-filter: none;
        pointer-events: auto;
    }
    .nav-wrapper::before {
        display: none;
    }
    .nav-wrapper ul {
        position: static;
        transform: none;
        width: auto;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 28px;
    }
    .nav-wrapper li {
        margin: 0;
    }
    .nav-wrapper a {
        opacity: 1;
        transform: none;
        background: transparent;
        padding: 8px 6px;
        border-radius: 50%;
    }
    .nav-wrapper a:hover {
        background: linear-gradient(135deg, rgba(201, 166, 70, .14), rgba(229, 195, 109, .16));
    }
}


/* Aktif sayfa vurgusu (opsiyonel class="active" veya aria-current="page") */

.nav-wrapper a.active,
.nav-wrapper a[aria-current="page"] {
    background: linear-gradient(135deg, rgba(201, 166, 70, .72), rgba(229, 195, 109, .78));
    color: #111;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto
}


/* === HOME (scoped) === */

body.home
/* ========== SAYFA / HERO / SLIDER (değiştirmedim) ========== */

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

body.home .hero {
    position: relative;
    padding: 72px 0 32px;
    overflow: hidden;
}

body.home .hero .bg {
    position: absolute;
    inset: -20% -20% auto -20%;
    height: 70%;
    background: radial-gradient(1200px 600px at 70% 10%, rgba(201, 166, 70, .12), transparent 60%), radial-gradient(1000px 500px at 30% -10%, rgba(229, 195, 109, .10), transparent 60%), radial-gradient(800px 400px at 50% 40%, rgba(255, 255, 255, .04), transparent 70%);
    filter: blur(2px);
    pointer-events: none;
}

body.home .grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 42px;
    align-items: center;
}

@media (max-width:900px) {
    body.home .grid {
        grid-template-columns: 1fr;
        gap: 100px;
    }
}

body.home h2 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: clamp(28px, 5vw, 56px);
    line-height: 1.05;
    margin: 0 0 16px;
    letter-spacing: .2px;
}

body.home .hero p {
    margin: 0 0 26px;
    color: #D7D7DB;
    max-width: 60ch;
    font-size: 16px;
    line-height: 2em;
}

body.home .cta-row {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

body.home .btn-primary {
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    background: linear-gradient(135deg, #C9A646, #E5C36D 60%, #FFF3C9);
    color: #111;
    box-shadow: 0 8px 26px rgba(229, 195, 109, .25);
}

body.home .btn-ghost {
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    color: #EEE;
    background: rgba(255, 255, 255, .02);
}

body.home .showcase {
    position: relative;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 18px;
    background: rgba(255, 255, 255, .02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .04);
    padding: 18px;
}

body.home .showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 6px 12px;
    margin-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 255, 255, .08);
}

.logo {
    z-index: 9999;
}

.logo img {
    height: 72px!important;
    /* fits within 64px header */
    display: block;
    width: auto;
}

body.home .showcase-header .title {
    font-weight: 600;
    letter-spacing: .5px;
    opacity: .9;
}

body.home .slider {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    user-select: none;
    touch-action: pan-y;
}

body.home .track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 90%;
    gap: 14px;
    padding: 8px 8px 14px;
    transform: translateX(0);
    transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}

@media (min-width:640px) {
    body.home .track {
        grid-auto-columns: 60%;
    }
}

@media (min-width:960px) {
    body.home .track {
        grid-auto-columns: 45%;
    }
}

body.home .card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .55);
    display: grid;
    grid-template-rows: 320px auto;
}

body.home .media {
    position: relative;
    background: radial-gradient(600px 280px at 60% -20%, rgba(233, 202, 125, .3), transparent 60%), #0F0F12;
}

body.home .media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(400px 200px at 50% 40%, rgba(255, 255, 255, .06), transparent 60%);
    pointer-events: none;
}

body.home .media-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .5));
}

body.home .content {
    padding: 14px 14px 16px;
    display: grid;
    gap: 8px;
}

body.home .tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(233, 202, 125, .12);
    border: 1px solid rgba(233, 202, 125, .25);
    color: #F7E6B7;
    width: max-content;
}

body.home .name {
    font-weight: 600;
    letter-spacing: .2px;
}

body.home .meta {
    font-size: 13px;
    opacity: .8;
}

body.home .controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
    padding: 0 6px;
}

body.home .arrows {
    display: flex;
    gap: 8px;
}

body.home .icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    display: grid;
    place-items: center;
}

body.home .icon-btn:hover {
    background: rgba(255, 255, 255, .12);
}

body.home .dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

body.home .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    transition: transform .25s ease, background .25s ease, width .25s ease;
}

body.home .dot.active {
    background: #E5C36D;
    width: 18px;
    border-radius: 999px;
}

body.home .section {
    padding: 64px 0;
}

body.home .section h3 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    letter-spacing: .2px;
    margin: 0 0 14px;
    font-size: clamp(22px, 3.6vw, 34px);
}

body.home .kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

body.home .kpi {
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .06);
}

body.home .kpi .num {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFF3C9, #E5C36D);
    -webkit-background-clip: text;
    color: transparent;
}

@media (max-width:900px) {
    body.home .kpis {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:520px) {
    body.home .kpis {
        grid-template-columns: 1fr;
    }
}

body.home .footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    color: #CFCFD4;
    font-size: 14px;
}


/* === PRODUCTS (scoped) === */

body.products
/* Temel */

*,
body.products *::before,
body.products *::after {
    box-sizing: border-box
}

body.products html,
body.products body {
    margin: 0;
    padding: 0
}

body.products img {
    display: block;
    max-width: 100%;
    height: auto
}

body.products a {
    text-decoration: none;
    color: inherit
}

body.products body {
    font-family: Poppins, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: #0E0E10;
    color: #F5F5F7
}

body.products
/* Üst başlık / breadcrumb opsiyonel */

.page-head {
    top: 0;
    z-index: 5;
    backdrop-filter: blur(10px);
    background: rgba(14, 14, 16, .55);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

body.products .container {
    width: min(1200px, 92vw);
    margin: 0 auto;
    padding: 18px 0;
}

body.products .page-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

body.products .page-title h1 {
    font-family: "Playfair Display", serif;
    margin: 0;
    font-size: 28px;
    letter-spacing: .2px
}

body.products .page-title .count {
    opacity: .75;
    font-size: 14px
}

body.products
/* Grid */

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 28px 0 44px;
}

@media (max-width:1100px) {
    body.products .grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width:900px) {
    body.products .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:640px) {
    body.products .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

body.products .card {
    position: relative;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

body.products .card:hover {
    transform: translateY(-3px);
    border-color: rgba(229, 195, 109, .35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .55), 0 0 0 1px rgba(229, 195, 109, .12) inset;
}

body.products .media {
    aspect-ratio: 1 / 1;
    /* kare görsel alanı */
    position: relative;
    background: radial-gradient(600px 260px at 60% -20%, rgba(233, 202, 125, .20), transparent 60%), #0F0F12;
}

body.products .media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0px;
    filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .5));
}

body.products .meta {
    padding: 10px 12px 14px;
    display: grid;
    gap: 4px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .02);
}

body.products .name {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .2px
}

body.products .sku {
    font-size: 12px;
    opacity: .7
}

body.products
/* Kart linki tüm kartı tıklanabilir yapar */

.card>a {
    position: absolute;
    inset: 0;
}

body.products
/* Basit sayfalama/alt aksiyon alanı (opsiyonel) */

.actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 8px 0 36px;
}

body.products .btn {
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
}

body.products .btn:hover {
    background: rgba(255, 255, 255, .12);
}


/* === PRODUCT DETAIL (scoped) === */

body.product-detail {
    /* page-level overrides if needed */
}

body.product-detail a {
    text-decoration: none;
    color: inherit;
}

body.product-detail .container {
    width: min(1200px, 92vw);
    margin: 0 auto;
    padding: 0px 0;
}

body.product-detail .detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 150px;
    margin: 50px;
    align-items: center;
}

@media (max-width:900px) {
    body.product-detail .detail {
        grid-template-columns: 1fr;
        margin: 18px;
    }
}

body.product-detail h1 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin: 18px 0 18px;
}

body.product-detail .specs {
    font-size: 15px;
    opacity: .85;
    margin: 12px 0;
}

body.product-detail .btn-primary {
    position: absolute;
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    background: linear-gradient(135deg, #C9A646, #E5C36D 60%, #FFF3C9);
    color: #111;
    box-shadow: 0 6px 20px rgba(229, 195, 109, .25);
}


/* Slider */

body.product-detail .slider {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .5);
}

body.product-detail .track {
    display: flex;
    transition: transform .5s ease;
}

body.product-detail .slide {
    min-width: 100%;
    background: #111;
    position: relative;
}

body.product-detail .slide img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: #0F0F12;
}


/* arrows */

body.product-detail .arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
}

body.product-detail .icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    display: grid;
    place-items: center;
    cursor: pointer;
}

body.product-detail .icon-btn:hover {
    background: rgba(255, 255, 255, .18);
}


/* dots */

body.product-detail .dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 10px;
}

body.product-detail .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
}

body.product-detail .dot.active {
    background: #E5C36D;
    width: 18px;
    border-radius: 999px;
}


/* === SHARED PAGE-HEAD === */

.page-head {
    top: 0;
    z-index: 5;
    backdrop-filter: blur(10px);
    background: rgba(14, 14, 16, .55);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.page-head .container {
    width: min(1200px, 92vw);
    margin: 0 auto;
    padding: 18px 0;
}

.page-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.page-title h1 {
    font-family: "Playfair Display", serif;
    margin: 0;
    font-size: 24px;
    letter-spacing: .2px;
}

.page-title .count {
    opacity: .75;
    font-size: 14px;
}


/* === ABOUT PAGE (scoped, safe) === */

.about-page .hero-kurumsal {
    position: relative;
    overflow: hidden
}

.about-page .hero-kurumsal .bg {
    position: absolute;
    inset: -20% -20% auto -20%;
    height: 70%;
    background: radial-gradient(1200px 600px at 70% 10%, rgba(201, 166, 70, .12), transparent 60%), radial-gradient(1000px 500px at 30% -10%, rgba(229, 195, 109, .10), transparent 60%), radial-gradient(800px 400px at 50% 40%, rgba(255, 255, 255, .04), transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.about-page .hero-kurumsal .container {
    padding: 56px 0 28px
}

.about-page .hero-kurumsal .lead {
    color: #D7D7DB;
    max-width: 70ch
}


/* Hikaye bölümü */

.about-page .section {
    padding: 64px 0
}

.about-page .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center
}

@media (max-width:900px) {
    .about-page .grid-2 {
        grid-template-columns: 1fr
    }
}

.about-page .about-img {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
}

.about-page .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-page .btn-primary {
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    background: linear-gradient(135deg, #C9A646, #E5C36D 60%, #FFF3C9);
    color: #111;
    box-shadow: 0 6px 20px rgba(229, 195, 109, .25)
}


/* Misyon & Vizyon kartları */

.about-page .cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

@media (max-width:900px) {
    .about-page .cards {
        grid-template-columns: 1fr
    }
}

.about-page .card {
    border-radius: 16px;
    /* border: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);*/
    padding: 16px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.about-page .card:hover {
    transform: translateY(-3px);
    border-color: rgba(229, 195, 109, .35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .55), 0 0 0 1px rgba(229, 195, 109, .12) inset
}

.about-page .card .thumb {
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, .06)
}

.about-page .card .thumb img {
    width: 100%;
    height: 300px;
    object-fit: cover
}

.about-page .card p {
    margin: 6px 0 0;
    opacity: .85
}


/* Galeri */

.about-page .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

@media (max-width:900px) {
    .about-page .grid-3 {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:520px) {
    .about-page .grid-3 {
        grid-template-columns: 1fr
    }
}

.about-page .gallery .grid-3 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .02);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .4);
}


/* Kapanış mesajı */

.about-page .closing p {
    font-size: 18px;
    opacity: .9;
    text-align: center;
    max-width: 60ch;
    margin: 0 auto
}


/* Body scroll lock menü açıkken (diğer sayfalarla uyumlu) */

body.menu-open {
    overflow: hidden
}


/* ==== CONTACT PAGE (scoped) ==== */

.contact-page .hero-contact {
    position: relative;
    overflow: hidden
}

.contact-page .hero-contact .bg {
    position: absolute;
    inset: -20% -20% auto -20%;
    height: 70%;
    background: radial-gradient(1100px 560px at 70% 10%, rgba(201, 166, 70, .12), transparent 60%), radial-gradient(900px 420px at 20% 100%, rgba(229, 195, 109, .10), transparent 60%);
    filter: blur(50px);
    pointer-events: none;
}

.contact-page .hero-contact .container {
    padding: 56px 0 28px
}

.contact-page .lead {
    color: #D7D7DB;
    max-width: 70ch
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px
}

@media (max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr
    }
}

.contact-card {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
    padding: 18px;
}

.stack {
    display: grid;
    gap: 14px
}

.info-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .02);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.info-row:hover {
    transform: translateY(-2px);
    border-color: rgba(229, 195, 109, .35);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .45)
}

.ico {
    flex: 0 0 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: radial-gradient(100% 100% at 50% 0%, rgba(255, 243, 201, .14), rgba(201, 166, 70, .08));
    border: 1px solid rgba(255, 255, 255, .10);
    position: relative;
    overflow: hidden;
}

.ico svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 8px rgba(229, 195, 109, .35))
}

.gold-grad stop:first-child {
    stop-color: #FFF3C9
}

.gold-grad stop:nth-child(2) {
    stop-color: #E5C36D
}

.gold-grad stop:last-child {
    stop-color: #C9A646
}

.info-row h3 {
    margin: 0;
    font-size: 16px
}

.muted {
    opacity: .8
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: 14px;
}

.pill:hover {
    background: rgba(255, 255, 255, .12)
}


/* form */

.form {
    display: grid;
    gap: 12px
}

.field {
    display: grid;
    gap: 6px
}

.input,
.textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    color: #F5F5F7;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    outline: none;
}

.input:focus,
.textarea:focus {
    border-color: rgba(229, 195, 109, .45);
    box-shadow: 0 0 0 3px rgba(229, 195, 109, .15)
}

.textarea {
    min-height: 120px;
    resize: vertical
}

.btn-primary {
    margin-top: 6px
}


/* map placeholder */

.map {
    height: 360px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: radial-gradient(800px 380px at 70% 0%, rgba(229, 195, 109, .10), transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    display: grid;
    place-items: center;
    color: #D7D7DB;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
}


/* social row */

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.social {
    height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.social:hover {
    transform: translateY(-2px);
    border-color: rgba(229, 195, 109, .35);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .45)
}

.social svg {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 2px 8px rgba(229, 195, 109, .35))
}


/* ====== FOOTER ====== */

.site-footer {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(14, 14, 16, .95), rgba(20, 20, 24, .98));
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #D7D7DB;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
    padding: 100px 0;
}

@media(max-width:900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center
    }
    .footer-links {
        justify-content: center
    }
    .footer-socials {
        justify-content: center
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.footer-brand h3 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin: 0
}

.footer-brand .motto {
    font-size: 13px;
    opacity: .8;
    margin: 4px 0 0
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-links a {
    color: #EDEDF2;
    transition: color .2s
}

.footer-links a:hover {
    color: #E5C36D
}

.footer-socials {
    display: flex;
    gap: 12px
}

.footer-socials .social {
    transition: transform .18s ease, filter .18s ease
}

.footer-bottom {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 13px;
    opacity: .75;
}

.logo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A646, #E5C36D 60%, #FFF3C9);
    box-shadow: 0 0 14px rgba(229, 195, 109, .4), inset 0 0 6px rgba(0, 0, 0, .3)
}