/*
 * ═══════════════════════════════════════════════════════════
 * TORUKLAR GROUP — MASTER CSS
 * Tailwind CDN YOK — Vite YOK — Tamamen statik CSS
 * Gold: #C5A035 · BG: #000000 · Text: #FFFFFF
 * Fonts: Playfair Display · Montserrat · Inter
 * ═══════════════════════════════════════════════════════════
 */

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #C5A035;
    border-radius: 2px;
}

::selection {
    background: rgba(197, 160, 53, .2);
    color: #fff;
}

/* ---- CONTAINER ---- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- GOLD HELPER ---- */
.gold {
    color: #C5A035;
}


/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 80px;
    background-color: rgb(11, 11, 15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background-color: rgb(8, 8, 12);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 100%;
    margin-left: -40px;
    padding: 0;
    text-decoration: none;
}

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

/* Nav group — sağ taraftaki tüm elemanları gruplar */
.nav-group {
    display: none;
    align-items: center;
    gap: 8px;
}

@media (min-width: 1024px) {
    .nav-group {
        display: flex;
    }
}

/* Desktop nav */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link,
.nav-link-btn {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .7);
    padding: 10px 18px;
    transition: color .3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
}

.nav-link:hover,
.nav-link-btn:hover {
    color: #C5A035;
}

.nav-link.active {
    color: #C5A035;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: #C5A035;
    border-radius: 1px;
}

/* Desktop dropdown */
.nav-dropdown-parent {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    padding: 6px 0;
    background: rgba(15, 15, 15, .99);
    border: 1px solid rgba(197, 160, 53, .35);
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    z-index: 200;
}

.nav-dropdown-parent:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, .65);
    transition: color .3s ease, background .3s ease;
    position: relative;
}

.nav-dropdown a::before {
    content: '•';
    color: rgba(255, 255, 255, .35);
    font-size: 14px;
    flex-shrink: 0;
}

.nav-dropdown a:hover {
    color: #C5A035;
    background: rgba(197, 160, 53, .05);
}

.nav-dropdown a:hover::before {
    color: #C5A035;
}

.nav-dropdown a+a {
    border-top: 1px solid rgba(255, 255, 255, .06);
}

/* Nav right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: 24px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    letter-spacing: .04em;
}

.lang-active {
    color: #C5A035;
    font-weight: 700;
    cursor: pointer;
}

.lang-sep {
    color: rgba(255, 255, 255, .25);
}

.lang-inactive {
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: color .3s;
}

.lang-inactive:hover {
    color: #fff;
}

/* Gold button */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 32px;
    background: #C5A035;
    color: #000;
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .04em;
    border-radius: 4px;
    transition: background .3s ease, transform .2s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-gold:hover {
    background: #d4af3a;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fff;
    transition: all .3s ease;
}


/* ═══════════════════════════════════════════
   MOBILE PANEL
═══════════════════════════════════════════ */
.mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: #000;
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.mobile-panel.open {
    transform: translateX(0);
}

.mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.mobile-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
}

.mobile-logo span {
    color: #C5A035;
}

.mobile-close {
    color: rgba(255, 255, 255, .4);
    padding: 4px;
}

.mobile-panel-body {
    padding: 32px 24px;
}

.mobile-link,
.mobile-link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, .45);
    border-bottom: 1px solid rgba(255, 255, 255, .03);
    transition: color .3s ease;
    text-align: left;
}

.mobile-link:hover,
.mobile-link-btn:hover {
    color: #C5A035;
}

.mobile-sub {
    padding-left: 16px;
}

.mobile-sub a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .25);
    transition: color .3s ease;
}

.mobile-sub a:hover {
    color: #C5A035;
}

.mobile-cta {
    display: block;
    text-align: center;
    background: #C5A035;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .08em;
    padding: 14px;
    border-radius: 6px;
    margin-top: 24px;
    transition: background .3s;
}

.mobile-cta:hover {
    background: #b08e2a;
}


/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, .45) 70%, rgba(0, 0, 0, .65) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, transparent 30%, transparent 60%, rgba(0, 0, 0, .5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title-white {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    color: #fff;
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    line-height: 1.12;
    letter-spacing: -.02em;
}

.hero-title-gold {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    color: #C5A035;
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    line-height: 1.12;
    letter-spacing: -.02em;
}

.hero-subtitle {
    color: rgba(255, 255, 255, .7);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1.6;
    margin-bottom: 44px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.btn-hero-gold {
    display: inline-block;
    padding: 16px 52px;
    background: #C5A035;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .03em;
    border-radius: 12px;
    transition: background .3s ease;
    min-width: 200px;
    text-align: center;
}

.btn-hero-gold:hover {
    background: #d4af3a;
}

.btn-hero-outline {
    display: inline-block;
    padding: 16px 52px;
    border: 2px solid #C5A035;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .03em;
    border-radius: 12px;
    transition: all .3s ease;
    min-width: 240px;
    text-align: center;
    background: transparent;
}

.btn-hero-outline:hover {
    background: rgba(197, 160, 53, .12);
    color: #C5A035;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-text {
    font-size: 10px;
    color: rgba(255, 255, 255, .2);
    letter-spacing: .3em;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 18px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-bead {
    width: 2px;
    height: 7px;
    background: #C5A035;
    border-radius: 2px;
    animation: scrollBead 2s ease-in-out infinite;
}

@keyframes scrollBead {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0;
    }
}


/* ═══════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════ */
.section {
    padding: 80px 0;
}

.section-lg {
    padding: 112px 0;
}

.section-center {
    text-align: center;
}

.section-tag {
    display: block;
    font-size: 11px;
    color: #C5A035;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: #fff;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    margin: 0;
}

.section-line {
    width: 48px;
    height: 1px;
    background: #C5A035;
    margin-top: 20px;
}

.section-line-center {
    margin-left: auto;
    margin-right: auto;
}


/* ═══════════════════════════════════════════
   GRID SYSTEM (Tailwind-free)
═══════════════════════════════════════════ */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.grid-2-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 640px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .grid-2-3 {
        grid-template-columns: 1fr 2fr;
    }
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}


/* ═══════════════════════════════════════════
   STATISTICS SECTION — Görsele birebir
═══════════════════════════════════════════ */
.statistics-section {
    background: #050505;
    padding: 0;
    position: relative;
}

/* Üst çizgi — tam genişlik */
.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(197, 160, 89, .18);
}

/* Alt çizgi — tam genişlik */
.statistics-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(197, 160, 89, .18);
}

.statistics-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 820px;
    margin: 0 auto;
    padding: 52px 0;
    position: relative;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 40px;
    position: relative;
}

/* Dikey ayırıcı — soluk altın */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    width: 1px;
    height: 80%;
    background: rgba(197, 160, 89, .18);
}

/* İkonlar — ince çizgi, küçük, altın */
.stat-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #c5a059;
}

.stat-icon svg {
    width: 17px;
    height: 17px;
    stroke-width: 1;
}

/* Rakamlar — Playfair Display italic, altın, büyük, zarif */
.stat-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 300;
    font-style: normal;
    font-size: clamp(2rem, 4vw, 3.5rem);
    background: linear-gradient(rgb(255, 215, 0) 0%, rgb(212, 175, 55) 40%, rgb(184, 134, 11) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #c5a059;
    /* fallback */
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

/* Etiketler */
.stat-label {
    font-family: Inter, -apple-system, sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* ——— Mobil uyum ——— */
@media (max-width: 768px) {
    .statistics-grid {
        flex-direction: column;
        max-width: 300px;
        padding: 40px 0;
        gap: 0;
    }

    .stat-item {
        padding: 28px 16px;
    }

    .stat-item:not(:last-child)::after {
        width: 50%;
        height: 1px;
        right: auto;
        left: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(-50%);
        background: rgba(197, 160, 89, .15);
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 8px;
    }
}


/* ═══════════════════════════════════════════
   SERVICES SECTION — Görsele birebir
═══════════════════════════════════════════ */
.services-section {
    background: #0E0F14;
    padding: 100px 0 80px;
}

/* ---- Başlık alanı ---- */
.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-header-line {
    width: 40px;
    height: 2px;
    background: rgb(212, 175, 55);
    margin: 0 auto 28px;
    border-radius: 1px;
}

.services-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.2vw, 2.85rem);
    font-weight: 700;
    font-style: normal;
    line-height: 1.15;
    margin-bottom: 18px;
}

.services-main-title .white {
    color: rgb(255, 255, 255);
}

.services-main-title .gold {
    color: rgb(212, 175, 55);
}

.services-subtitle {
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgb(122, 122, 134);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- 4 Görsel Kart Grid ---- */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* ---- Kart — varsayılan durum ---- */
.service-image-card {
    position: relative;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 30px;
    transform: scale(1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Hover — altın çerçeve + büyüme ---- */
.service-image-card:hover {
    border-color: rgba(197, 160, 89, 0.6);
    box-shadow: rgba(197, 160, 89, 0.15) 0px 16px 50px;
    transform: scale(1.04);
}

/* ---- Görsel ---- */
.service-image-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Gradient overlay — sabit, değişmez ---- */
.service-image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .80) 0%,
            rgba(0, 0, 0, .40) 45%,
            rgba(0, 0, 0, .10) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ---- Altın dekoratif çizgi — başlığın üstünde, hover'da genişler ---- */
.service-card-accent {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, rgb(255, 215, 0), rgba(255, 215, 0, 0.5));
    border-radius: 2px;
    margin-bottom: 14px;
    flex-shrink: 0;
    transition: width 0.4s;
}

/* Hover'da çizgi genişler ve glow efekti alır */
.service-image-card:hover .service-card-accent {
    width: 48px;
    box-shadow: rgba(255, 215, 0, 0.4) 0px 0px 10px;
}

/* ---- Metin alanı — koyu arka plan ile okunaklı, başlıklar hizalı ---- */
.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px 24px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.75) 60%,
            rgba(0, 0, 0, 0.0) 100%);
}

/* ---- Başlık — her zaman görünür, altın, hizalı ---- */
.service-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: rgb(255, 215, 0);
    margin-bottom: 8px;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, .8),
        0 0 20px rgba(255, 215, 0, .2);
    letter-spacing: 0.02em;
}

/* ---- Açıklama — her zaman görünür, sabit yükseklik ile hizalama ---- */
.service-card-desc {
    font-family: Inter, sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
    min-height: 5.8em;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ——— Mobil uyum ——— */
@media (max-width: 1024px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-image-card {
        height: 380px;
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 72px 0 56px;
    }

    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-image-card {
        height: 340px;
    }

    .service-image-card::after {
        background: linear-gradient(to top,
                rgba(0, 0, 0, .85) 0%,
                rgba(0, 0, 0, .55) 50%,
                rgba(0, 0, 0, .25) 100%);
    }

    .service-image-card img {
        filter: brightness(.55);
    }
}


/* ═══════════════════════════════════════════
   FEATURED PROJECTS SECTION
═══════════════════════════════════════════ */
.featured-projects-section {
    background: #0B0C10;
    padding: 100px 0;
}

.featured-projects-header {
    margin-bottom: 48px;
}

/* ---- Accent çizgi — başlığın üstünde ---- */
.fp-accent-line {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, rgb(212, 175, 55), rgba(212, 175, 55, 0.4));
    border-radius: 2px;
    margin-bottom: 20px;
}

.featured-projects-title {
    font-size: 2.5rem;
    margin: 0;
    line-height: 1.2;
}

/* ---- Grid: 12 sütun, sol 7 + sağ 5 ---- */
.featured-projects-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 20px;
}

.fp-right-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ---- Kart — ortak stiller ---- */
.fp-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    border: 1px solid transparent;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    text-decoration: none;
}

.fp-card-large {
    height: 620px;
}

.fp-card-small {
    height: 300px;
}

/* ---- Kart görseli ---- */
.fp-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Gradient overlay ---- */
.fp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.35) 50%,
            rgba(0, 0, 0, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ---- Hover — büyüme + altın çerçeve ---- */
.fp-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: rgba(212, 175, 55, 0.12) 0px 12px 40px;
    transform: scale(1.02);
}

.fp-card:hover img {
    transform: scale(1.06);
}

/* ---- İçerik — kartın altında ---- */
.fp-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 3;
}

/* ---- Kategori badge ---- */
.fp-card-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: rgb(212, 175, 55);
    font-family: Inter, sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 10px;
}

/* ---- Proje başlığı ---- */
.fp-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* ---- Lokasyon ---- */
.fp-card-location {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.9rem;
    font-style: italic;
    color: rgb(212, 175, 55);
    margin: 0;
}

/* ——— Mobil uyum ——— */
@media (max-width: 1024px) {
    .featured-projects-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fp-card-large {
        height: 480px;
    }

    .fp-card-small {
        height: 230px;
    }
}

@media (max-width: 640px) {
    .featured-projects-section {
        padding: 72px 0 56px;
    }

    .featured-projects-title {
        font-size: 1.8rem;
    }

    .featured-projects-grid {
        grid-template-columns: 1fr;
    }

    .fp-card-large {
        height: 400px;
    }

    .fp-card-small {
        height: 280px;
    }
}

/* ---- Tüm Projeleri Keşfet linki ---- */
.fp-explore-wrap {
    text-align: center;
    margin-top: 56px;
}

.fp-explore-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: rgb(154, 154, 166);
    transition: color 0.3s;
    letter-spacing: 0.02em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.fp-explore-link:hover {
    color: rgb(212, 175, 55);
}

.fp-explore-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.fp-explore-link:hover .fp-explore-arrow {
    transform: translateX(6px);
}


/* ═══════════════════════════════════════════
   CTA SECTION — Projenizi Hayata Geçirelim
═══════════════════════════════════════════ */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 9, 13, 0.88);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    margin: 0 0 24px;
}

.cta-small-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 auto 28px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, rgb(212, 175, 55) 0%, rgb(184, 148, 30) 100%);
    border-radius: 6px;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgb(10, 10, 14);
    text-decoration: none;
    transition: 0.4s;
    box-shadow:
        rgba(212, 175, 55, 0.3) 0px 0px 30px,
        rgba(0, 0, 0, 0.3) 0px 10px 40px;
    transform: translateY(0px);
}

.cta-button:hover {
    background: linear-gradient(135deg, rgb(212, 175, 55) 0%, rgb(184, 148, 30) 100%);
    box-shadow:
        rgba(212, 175, 55, 0.5) 0px 0px 50px,
        rgba(0, 0, 0, 0.4) 0px 15px 50px;
    transform: translateY(-3px);
}

@media (max-width: 640px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 0.9rem;
    }
}

/* ═══════════════════════════════════════════
   ABOUT US SECTION
═══════════════════════════════════════════ */
.about-section {
    background: #0d0d0d;
    padding: 100px 0;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 64px;
}

.about-text {
    flex: 1;
    min-width: 0;
}

.about-image {
    flex: 1;
    min-width: 0;
}

.about-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #c5a059;
    margin-bottom: 16px;
}

.about-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 28px;
}

.about-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, .55);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-desc:last-of-type {
    margin-bottom: 36px;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: #c5a059;
    color: #0d0d0d;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .04em;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background .3s ease, transform .2s ease, box-shadow .3s ease;
    text-decoration: none;
}

.btn-about:hover {
    background: #d4af3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 160, 89, .2);
}

.about-image img {
    width: 100%;
    height: auto;
    min-height: 380px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

@media (max-width: 1024px) {
    .about-flex {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-flex {
        flex-direction: column;
        gap: 40px;
    }

    .about-text {
        text-align: center;
    }

    .about-image img {
        min-height: 280px;
    }
}


/* ═══════════════════════════════════════════
   COUNTERS (legacy — kept for compatibility)
═══════════════════════════════════════════ */
.counters {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .counters {
        flex-direction: row;
    }
}

.counter {
    text-align: center;
    padding: 32px 40px;
    flex: 1;
}

@media (min-width: 768px) {
    .counter+.counter {
        border-left: 1px solid rgba(255, 255, 255, .05);
    }
}

.counter-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #C5A035;
    line-height: 1;
    margin-bottom: 8px;
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.counter-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .25);
    letter-spacing: .1em;
    text-transform: uppercase;
}


/* ═══════════════════════════════════════════
   CARDS — Service, Project, Why, Blog, Contact, Value
═══════════════════════════════════════════ */
.card {
    background: #000;
    border: 1px solid rgba(255, 255, 255, .04);
    transition: border-color .5s ease;
}

.card:hover {
    border-color: rgba(197, 160, 53, .2);
}

/* Service card */
.svc-card {
    padding: 32px;
    height: 100%;
}

.svc-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A035;
    margin-bottom: 20px;
}

.svc-icon svg {
    width: 28px;
    height: 28px;
}

.svc-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
}

.svc-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
    line-height: 1.7;
    margin-bottom: 16px;
}

.svc-more {
    font-size: 12px;
    color: #C5A035;
    font-weight: 500;
    letter-spacing: .04em;
}

/* Project card */
.pcard {
    overflow: hidden;
    display: block;
}

.pcard:hover .pcard-img {
    transform: scale(1.04);
}

.pcard-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #0a0a0a;
}

.pcard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.pcard-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent);
}

.pcard-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.badge-gold {
    background: rgba(197, 160, 53, .1);
    color: #C5A035;
    border: 1px solid rgba(197, 160, 53, .15);
}

.badge-white {
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .6);
}

.pcard-body {
    padding: 20px;
    background: #000;
}

.pcard-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    transition: color .3s ease;
}

.pcard:hover .pcard-title {
    color: #C5A035;
}

.pcard-text {
    font-size: 13px;
    color: rgba(255, 255, 255, .25);
    margin-top: 4px;
}

/* Placeholder icon for projects without images */
.pcard-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.pcard-placeholder svg {
    width: 56px;
    height: 56px;
    color: rgba(255, 255, 255, .03);
}

/* Why card */
.why-card {
    text-align: center;
    padding: 32px;
}

.why-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 53, .05);
    border-radius: 50%;
    color: #C5A035;
}

.why-icon svg {
    width: 20px;
    height: 20px;
}

.why-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
}

.why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .25);
    line-height: 1.6;
}

/* Blog card */
.blog-card {
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.blog-tag {
    font-size: 10px;
    color: #C5A035;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
}

.blog-date {
    font-size: 12px;
    color: rgba(255, 255, 255, .15);
    margin-left: auto;
}

.blog-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
}

.blog-excerpt {
    font-size: 13px;
    color: rgba(255, 255, 255, .25);
    line-height: 1.7;
    flex: 1;
}

.blog-more {
    font-size: 12px;
    color: #C5A035;
    font-weight: 500;
    margin-top: 16px;
}

/* Contact card */
.contact-card {
    padding: 24px;
}

/* Value card */
.value-card {
    padding: 32px;
}

.value-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, .25);
    line-height: 1.7;
}


/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
    padding: 96px 0;
    text-align: center;
}

.cta-section .section-title {
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}


/* ═══════════════════════════════════════════
   PAGE HEADER (subpages)
═══════════════════════════════════════════ */
.pg-head {
    padding: 160px 0 64px;
}

.pg-tag {
    display: block;
    font-size: 11px;
    color: #C5A035;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 12px;
}

.pg-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin: 0 0 12px;
}

.pg-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, .3);
    max-width: 500px;
}

@media (max-width: 768px) {
    .pg-head {
        padding: 128px 0 48px;
    }
}


/* ═══════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════ */
.breadcrumb {
    font-size: 12px;
    margin-bottom: 16px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .25);
    transition: color .3s;
}

.breadcrumb a:hover {
    color: #C5A035;
}

.breadcrumb .sep {
    margin: 0 8px;
    color: rgba(255, 255, 255, .1);
}

.breadcrumb .cur {
    color: rgba(255, 255, 255, .5);
}


/* ═══════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════ */
.sidebar {
    position: sticky;
    top: 100px;
    border: 1px solid rgba(255, 255, 255, .04);
    padding: 32px;
}

.sidebar-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
}


/* ═══════════════════════════════════════════
   PROSE
═══════════════════════════════════════════ */
.prose p {
    font-size: 15px;
    color: rgba(255, 255, 255, .35);
    line-height: 1.9;
    margin-bottom: 20px;
}


/* ═══════════════════════════════════════════
   FILTER TABS
═══════════════════════════════════════════ */
.filter-tabs {
    display: flex;
    overflow-x: auto;
}

.ftab {
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
    padding: 12px 24px;
    border-bottom: 2px solid transparent;
    transition: all .3s ease;
    white-space: nowrap;
}

.ftab:hover {
    color: rgba(255, 255, 255, .6);
}

.ftab.on {
    color: #C5A035;
    border-bottom-color: #C5A035;
}


/* ═══════════════════════════════════════════
   FORM INPUTS
═══════════════════════════════════════════ */
.form-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, .2);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color .3s ease;
}

.form-input:focus {
    border-color: rgba(197, 160, 53, .35);
}

/* Button primary (general use) */
.btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background: #C5A035;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .08em;
    border-radius: 0;
    border: none;
    cursor: pointer;
    transition: background .3s ease;
    text-align: center;
}

.btn-primary:hover {
    background: #b08e2a;
}

.btn-primary-full {
    display: block;
    width: 100%;
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
    background: #0A0A0E;
    padding: 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-logo-wrap {
    margin-bottom: 20px;
}

.footer-logo {
    height: 48px;
    width: auto;
}

.footer-logo-fallback {
    align-items: center;
    gap: 10px;
}

/* ---- Sosyal ikonlar ---- */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.footer-social-icon:hover {
    color: rgb(212, 175, 55);
    border-color: rgba(212, 175, 55, 0.4);
}

/* ---- Linkler ---- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: rgb(122, 122, 134);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: rgb(212, 175, 55);
}

/* ---- İletişim satırları ---- */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: rgb(122, 122, 134);
    line-height: 1.7;
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: rgb(212, 175, 55);
    margin-top: 3px;
}

.footer-contact-item a:hover {
    color: rgb(212, 175, 55);
}

/* ---- Çalışma saatleri ---- */
.footer-hours-row {
    display: flex;
    justify-content: space-between;
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: rgb(122, 122, 134);
    padding: 8px 0;
}

.footer-hours-time {
    color: rgb(212, 175, 55);
    font-weight: 500;
}

.footer-hours-closed {
    color: rgb(122, 122, 134);
    font-weight: 400;
    font-style: italic;
}

/* ---- Alt bar ---- */
.footer-bottom-bar {
    background: #060609;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 24px 0;
    margin-top: 0;
}

.footer-bottom-bar .footer-container {
    padding-bottom: 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-family: Inter, sans-serif;
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgb(90, 90, 102);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: rgb(212, 175, 55);
}

/* ---- Footer mobil uyum ---- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-container {
        padding: 56px 20px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease;
}

.rv.show {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════════
   ALERT MESSAGES
═══════════════════════════════════════════ */
.alert-ok {
    padding: 16px;
    border: 1px solid rgba(197, 160, 53, .2);
    color: #C5A035;
    font-size: 14px;
}

.alert-err {
    padding: 16px;
    border: 1px solid rgba(239, 68, 68, .2);
    color: #ef4444;
    font-size: 14px;
}


/* ═══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-gold,
    .btn-hero-outline {
        width: 100%;
        min-width: 0;
    }
}


/* ═══════════════════════════════════════════
   NAVBAR — INLINE STYLE REFACTOR
═══════════════════════════════════════════ */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 80px;
    background-color: rgb(11, 11, 15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link-ref {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    height: 100%;
    margin: 0 0 0 30px;
    padding: 0;
}

.logo-img-ref {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.logo-fallback {
    display: none;
    align-items: center;
    gap: 8px;
}

.logo-fallback-icon {
    width: 36px;
    height: 36px;
    background: rgb(212, 175, 55);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.logo-fallback-icon svg {
    width: 18px;
    height: 18px;
    color: #000;
}

.logo-fallback-name {
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.08em;
}

.logo-fallback-sub {
    display: block;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.15em;
    margin-top: -2px;
}

/* Nav desktop group */
.nav-desktop-group {
    display: none;
    align-items: center;
    gap: 36px;
}

@media (min-width: 1024px) {
    .nav-desktop-group {
        display: flex !important;
    }

    .ham-btn-ref {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .nav-desktop-group {
        display: none !important;
    }

    .ham-btn-ref {
        display: flex !important;
    }
}

.nav-links-row {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link-ref {
    position: relative;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 300;
    font-family: Inter, sans-serif;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.25s;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-link-ref:hover {
    color: rgb(255, 215, 0) !important;
}

.nav-link-ref.active {
    color: rgb(255, 215, 0);
}

.nav-active-bar {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgb(255, 215, 0);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* Kurumsal dropdown trigger */
.nav-kurumsal-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.kurumsal-chevron {
    transition: transform 0.25s;
    transform: rotate(0deg);
}

.nav-drop-parent:hover .kurumsal-chevron {
    transform: rotate(180deg) !important;
}

/* Nav dropdown panel */
.nav-drop-ref {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: 220px;
    background-color: rgb(18, 18, 24);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav-drop-parent:hover .nav-drop-ref {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

.nav-drop-item-ref {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    background-color: transparent;
    text-decoration: none;
    transition: 0.2s;
}

.nav-drop-item-ref:hover {
    background-color: rgba(255, 215, 0, 0.08) !important;
    color: rgb(255, 215, 0) !important;
}

.nav-drop-item-ref+.nav-drop-item-ref {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-drop-dot {
    color: rgb(255, 215, 0);
    font-size: 8px;
}

.nav-drop-arrow {
    font-size: 16px;
    opacity: 0.4;
}

.nav-drop-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Dil butonları */
.lang-group {
    display: flex;
    align-items: center;
    gap: 2px;
}

.lang-btn-ref {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 300;
    font-family: Inter, sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: 0.25s;
}

.lang-btn-active {
    color: rgb(255, 215, 0);
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.lang-btn-inactive {
    color: rgba(255, 255, 255, 0.5);
    text-shadow: none;
}

/* Teklif Al */
.teklif-btn-ref {
    padding: 12px 32px;
    background: linear-gradient(135deg, rgb(184, 150, 44) 0%, rgb(154, 123, 31) 100%);
    color: rgb(11, 11, 15);
    font-size: 13px;
    font-weight: 600;
    font-family: Inter, sans-serif;
    letter-spacing: 0.5px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 24px rgba(184, 150, 44, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0) scale(1);
    display: inline-block;
}

.teklif-btn-ref:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 0 32px rgba(184, 150, 44, 0.6), 0 8px 24px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* Hamburger */
.ham-btn-ref {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.ham-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fff;
    transition: all 0.3s;
}


/* ═══════════════════════════════════════════
   MOBİL PANEL — INLINE STYLE REFACTOR
═══════════════════════════════════════════ */
.mobile-panel-ref {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: #000;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-panel-ref.open {
    transform: translateX(0);
}

.mob-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mob-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
}

.mob-brand-accent {
    color: #C5A035;
}

.mob-close {
    color: rgba(255, 255, 255, 0.4);
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mob-close svg {
    width: 24px;
    height: 24px;
}

.mob-body {
    padding: 32px 24px;
}

.mob-link {
    display: block;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    text-decoration: none;
}

.mob-link:hover {
    color: #C5A035;
}

.mob-corp-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    text-align: left;
}

.mob-corp-btn:hover {
    color: #C5A035;
}

.mob-corp-chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.mob-sub {
    padding-left: 16px;
    display: none;
}

.mob-sub a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
    text-decoration: none;
}

.mob-sub a:hover {
    color: #C5A035;
}

.mob-cta-wrap {
    padding-top: 24px;
}

.mob-cta {
    display: block;
    text-align: center;
    background: #C5A035;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    padding: 14px;
    border-radius: 6px;
    transition: background 0.3s;
    text-decoration: none;
}

.mob-cta:hover {
    background: #b08e2a;
}


/* ═══════════════════════════════════════════
   FOOTER — INLINE STYLE REFACTOR
═══════════════════════════════════════════ */
.footer-divider-top {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.footer-col-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.footer-desc {
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgb(122, 122, 134);
    margin-bottom: 32px;
    max-width: 280px;
}

.footer-logo-ref {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-copy-text {
    font-family: Inter, sans-serif;
    color: rgb(90, 90, 102);
    font-size: 0.8125rem;
    font-weight: 300;
}


/* ═══════════════════════════════════════════
   HAKKIMIZDA SAYFASI (ABOUT PAGE)
═══════════════════════════════════════════ */
.about-story-section {
    background: rgb(10, 10, 14);
    padding: 140px 0 100px;
}

.about-story-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 1023px) {
    .about-grid-2col {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }
}

.about-logo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-logo-img {
    max-width: 420px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-accent-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, rgb(212, 175, 55), rgba(212, 175, 55, 0.3));
    margin-bottom: 24px;
}

.about-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 32px;
}

.about-subtitle-gold {
    font-family: Inter, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: rgb(212, 175, 55);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.about-body-text {
    font-family: Inter, sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgb(154, 154, 166);
    line-height: 1.9;
    margin-bottom: 40px;
}

.about-body-text p {
    margin-bottom: 20px;
}

.about-body-text p:last-child {
    margin-bottom: 0;
}

.about-experience-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 48px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.03);
}

.about-exp-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 500;
    color: rgb(212, 175, 55);
    line-height: 1;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.about-exp-label {
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgb(154, 154, 166);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 8px;
}


/* ═══════════════════════════════════════════
   HOME CTA — INLINE STYLE REFACTOR
═══════════════════════════════════════════ */
.cta-overlay-ref {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 10, 14, 0.7) 0%, rgba(10, 10, 14, 0.85) 50%, rgba(10, 10, 14, 0.95) 100%);
    z-index: 1;
}

.cta-top-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    z-index: 2;
}

.cta-title-white {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
}

.cta-title-gold {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: rgb(212, 175, 55);
    font-style: italic;
    line-height: 1.2;
}

.cta-desc-ref {
    font-family: Inter, sans-serif;
    font-size: 1.125rem;
    color: rgb(154, 154, 166);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 48px;
    font-weight: 300;
    text-align: center;
}

/* Featured projects title spans */
.fp-title-white {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-weight: 400;
}

.fp-title-gold {
    font-family: 'Playfair Display', Georgia, serif;
    color: rgb(212, 175, 55);
    font-style: italic;
    font-weight: 400;
}

.fp-subtitle {
    color: rgb(106, 106, 118);
    font-size: 1rem;
    max-width: 400px;
    line-height: 1.7;
    margin-top: 12px;
}


/* ═══════════════════════════════════════════
   VİZYON SAYFASI
═══════════════════════════════════════════ */
.sec-lg {
    padding: 112px 0;
}

.sec {
    padding: 80px 0;
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.wrap-sm {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.tc {
    text-align: center;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.sline {
    width: 48px;
    height: 1px;
    background: #C5A035;
    margin-top: 1.5rem;
}

.sline-c {
    width: 48px;
    height: 1px;
    background: #C5A035;
    margin: 20px auto 0;
}

.stag {
    display: block;
    font-size: 11px;
    color: #C5A035;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 12px;
}

.stitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: #fff;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    margin: 0;
}

.f-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.vision-col-wrap {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.vision-box {
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.vision-icon {
    width: 36px;
    height: 36px;
    color: #D4AF37;
    margin-bottom: 0.75rem;
}

.vision-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.g3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.g2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .g3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (min-width: 1024px) {
    .g3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vcard {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 32px;
    transition: border-color 0.5s;
}

.vcard:hover {
    border-color: rgba(197, 160, 53, 0.2);
}

.vcard h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
}

.vcard p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.7;
}

/* Vizyon value card center variant */
.vcard-center {
    text-align: center;
}

.vcard-symbol {
    display: block;
    color: #C5A035;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}


/* ═══════════════════════════════════════════
   İLETİŞİM SAYFASI (CONTACT)
═══════════════════════════════════════════ */
.contact-cards-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ccard {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 24px;
    transition: border-color 0.5s;
}

.ccard:hover {
    border-color: rgba(197, 160, 53, 0.2);
}

.ccard-icon {
    width: 20px;
    height: 20px;
    color: #D4AF37;
    margin-bottom: 0.75rem;
}

.ccard-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.txt-m {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.contact-form-wrap {
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 2.5rem;
}

.contact-form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

.fl {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.fi {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.fi:focus {
    border-color: rgba(197, 160, 53, 0.35);
}

.fi-select {
    appearance: auto;
}

.fi-textarea {
    resize: vertical;
}

.mb-1rem {
    margin-bottom: 1rem;
}

.mb-1-25rem {
    margin-bottom: 1.25rem;
}


/* ═══════════════════════════════════════════
   PROJE DETAY SAYFASI (projects/show)
═══════════════════════════════════════════ */
.project-hero {
    position: relative;
    height: clamp(240px, 40vh, 380px);
}

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

.project-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.25) 100%);
}

.project-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
}

.project-detail-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.project-badges {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pcard-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pcard-badge-gold {
    background: rgba(197, 160, 53, 0.1);
    color: #C5A035;
    border: 1px solid rgba(197, 160, 53, 0.15);
}

.pcard-badge-w {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
}

@media (min-width: 1024px) {
    .detail-layout {
        grid-template-columns: 2fr 1fr;
    }
}

.detail-main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.side {
    position: sticky;
    top: 100px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 32px;
}

.side-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.detail-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.detail-info-item {
    font-size: 14px;
}

.detail-info-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.detail-info-value {
    color: #fff;
}

.detail-cta-wrap {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.btn-block {
    display: block;
    text-align: center;
    width: 100%;
}

.text-center {
    text-align: center;
}

.mt-1rem {
    margin-top: 1rem;
}

.mt-3rem {
    margin-top: 3rem;
}

.phone-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.3s ease;
    text-decoration: none;
}

.phone-link:hover {
    color: #C5A035;
}


/* ═══════════════════════════════════════════
   HİZMET DETAY SAYFASI (services/show)
═══════════════════════════════════════════ */
.service-detail-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-img-wrap {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.service-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.side-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
}

.feature-check {
    width: 14px;
    height: 14px;
    color: #D4AF37;
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════
   BLOG SAYFASI
═══════════════════════════════════════════ */
.bcard {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.5s;
}

.bcard:hover {
    border-color: rgba(197, 160, 53, 0.2);
}

.bcard-meta {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.bcard-tag {
    font-size: 10px;
    color: #C5A035;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.bcard-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.15);
    margin-left: auto;
}

.bcard h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
}

.bcard p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.7;
    flex: 1;
}

.bcard-more {
    font-size: 12px;
    color: #C5A035;
    font-weight: 500;
    margin-top: 16px;
    display: block;
}


/* ═══════════════════════════════════════════
   PROJELER LİSTE SAYFA EK SINIFLAR
═══════════════════════════════════════════ */
.pcard-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.pcard-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    z-index: 2;
}

.pcard-hover h3 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
}

.pcard-hover p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.pcard-bot {
    padding: 16px 20px;
    background: #000;
}

.pcard-bot h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
}

.pcard-bot p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

.pcard-img-wrap-alt {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #0a0a0a;
}

.pcard-img-alt {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.pcard-badge-wrap {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 5;
}

.pcard-placeholder-alt {
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.03);
}

.pcard-img-wrap-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ═══════════════════════════════════════════
   HİZMETLER LİSTE SAYFASI
═══════════════════════════════════════════ */
.svc {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 32px;
    transition: border-color 0.5s;
}

.svc:hover {
    border-color: rgba(197, 160, 53, 0.2);
}

.cta {
    padding: 96px 0;
    text-align: center;
}

.cta-title-sub {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: #fff;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    margin: 0 0 16px;
}

/* Breadcrumb */
.bc {
    font-size: 12px;
    margin-bottom: 16px;
}

.bc a {
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.3s;
    text-decoration: none;
}

.bc a:hover {
    color: #C5A035;
}

.bc .sep {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.1);
}

.bc .cur {
    color: rgba(255, 255, 255, 0.5);
}


/* ═══════════════════════════════════════════
   YARDIMCI SINIFLAR (UTILITIES)
═══════════════════════════════════════════ */
.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.gap-3 {
    gap: 12px;
}

.hidden {
    display: none;
}

.bg-black {
    background: #000;
}


/* ═══════════════════════════════════════════
   SCROLL REVEAL & ANIMATIONS
   (layout <style> bloğundan taşındı)
═══════════════════════════════════════════ */
::selection {
    background: rgba(197, 160, 53, 0.2);
    color: #fff;
}

.rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.rv.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes scrollBead {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0;
    }
}


/* ═══════════════════════════════════════════
   FİLTRE TABLARI (projects/index)
═══════════════════════════════════════════ */
.filter-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
}

.ftab {
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.35);
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s;
    white-space: nowrap;
}

.ftab:hover {
    color: rgba(255, 255, 255, 0.7);
}

.ftab.on {
    color: #C5A035;
    border-bottom-color: #C5A035;
}


/* ═══════════════════════════════════════════
   HİZMET LİSTE KART (svc-*) — services/index
═══════════════════════════════════════════ */
.svc-icon {
    width: 40px;
    height: 40px;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.svc-icon svg {
    width: 100%;
    height: 100%;
}

.svc-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
}

.svc-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.7;
    margin-bottom: 16px;
}

.svc-more {
    font-size: 12px;
    color: #C5A035;
    font-weight: 500;
    display: inline-block;
    transition: transform 0.3s;
}

.svc:hover .svc-more {
    transform: translateX(4px);
}


/* ═══════════════════════════════════════════
   SAYFA BAŞLIĞI (pg-head) — tüm alt sayfalar
═══════════════════════════════════════════ */
.pg-head {
    background: rgb(10, 10, 14);
    padding: 140px 0 60px;
}

.pg-tag {
    display: block;
    font-size: 11px;
    color: #C5A035;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 12px;
}

.pg-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin: 0 0 12px;
}

.pg-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.35);
    max-width: 500px;
    line-height: 1.7;
}