@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* ─── SKIP NAVIGATION (Accessibility) ─── */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    background: var(--c-dark);
    color: var(--c-light);
    padding: 12px 24px;
    font-family: var(--ff-body);
    font-size: .78rem;
    letter-spacing: .1em;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    transition: top .3s ease;
}
.skip-nav:focus {
    top: 0;
}

/* ═══════════════════════════════════════════
   TOKENS  —  Otantik Döşeme palette
═══════════════════════════════════════════ */
:root {
    --c-light: #F1F4F2;
    --c-dark: #2C3A31;
    --c-dark2: #1e2920;
    --c-mid: #4a5c4f;
    --c-muted: #8a9e8f;
    --c-gold: #b49a6e;
    --c-gold2: rgba(180, 154, 110, .15);
    --c-white: #ffffff;
    --c-border: rgba(44, 58, 49, .10);
    --font-size-xxl: 6rem;
    --font-size-xl: 5rem;
    --font-size-l: 4rem;
    --font-size-m: 3rem;
    --font-size-s: 2rem;
    --font-size-xs: 1.5rem;
    --font-size-xxs: 1.3rem;
    --font-size-xxxs: 1rem;
    --font-size-xxxxs: 0.8rem;
    --font-size-xxxxxs: 0.6rem;
    --ff-display: Raleway, sans-serif;
    --ff-body: 'DM Sans', sans-serif;
    --font-title: "Cinzel Decorative", serif;
    --ease: cubic-bezier(.22, .68, 0, 1.2);
    --trans: .38s var(--ease);
    --gradient-1: linear-gradient(to top, rgb(25 21 9 / 88%) 0%, rgba(20, 32, 24, .1) 50%, transparent 100%);
    --gradient-2: linear-gradient(to right, rgb(0 0 0 / 43%) 0%, rgb(54 40 12 / 0%) 50%, #32261066 100%);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--c-light);
    color: var(--c-dark);
    font-family: var(--ff-body);
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200; /* Menü (100) üstünde — logo ve close butonu daima görünür */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 64px;
    transition: background .45s, padding .35s, box-shadow .35s;
}

header.scrolled {
    background: rgba(241, 244, 242, .92);
    backdrop-filter: blur(16px);
    padding: 16px 64px;
    box-shadow: 0 1px 0 var(--c-border);
}

/* Menü açıkken header arka planı şeffaf — logo ve close üstte kalır */
body.menu-open header,
body.menu-open header.scrolled {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}

/* Logo ve hamburger — scrolled durumda açık arka plana uyum sağlar */
.logo img {
    transition: filter .4s ease;
}

header.scrolled .logo img {
    filter: brightness(0);
}

header.scrolled .header-right .menu-btn:not(.active):not(:hover) .line {
    background: var(--c-dark);
}

/* Menü açıkken (header şeffaf, koyu menü zemini): logo orijinal aydınlık tonuna döner */
body.menu-open header.scrolled .logo img {
    filter: none;
}

.logo {
    display: flex;
    flex-direction: column;
    font-family: var(--ff-display);
    text-decoration: none;
    max-width: 100px;
    position: relative;
    z-index: 200; /* Menü üstünde görünmesi için */
}

.header-right {
    gap: 10px;
    display: flex;
    justify-content: flex-end;
    width: 200px;
    position: relative;
    z-index: 200; /* Menü üstünde görünmesi için */
}

.header-right > div {
    height: 25px;
    width: 35px;
}

.header-right .menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    transition: 0.25s all cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    z-index: 300;
    /* Menüden daha üstte olmalı */
    position: relative;
}

.header-right .menu-btn .line {
    width: 100%;
    will-change: transform;
    height: 2px;
    background: var(--c-light);
    will-change: transform;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-right .menu-btn .line:nth-of-type(2) {
    width: 18px;
}

.header-right .menu-btn .line:nth-of-type(3) {

    width: 29px;
}

.header-right .menu-btn:hover .line {
    background: var(--c-gold);
}

.header-right .menu-btn:hover .line:nth-of-type(2) {
    width: 100%;
}

.header-right .menu-btn:hover .line:nth-of-type(1) {
    width: 18px;
}

.header-right .menu-btn:hover .line:nth-of-type(3) {
    width: 24px;
}

/* Menu Açık Durumu - Çarpı İkonu */
.menu-btn.active .line {
    background: var(--c-gold);
    /* Dönüşürken renk değişimi */
}

.menu-btn.active .line:nth-of-type(1) {
    transform: translateY(11.5px) rotate(45deg);
    width: 100% !important;
}

.menu-btn.active .line:nth-of-type(2) {
    opacity: 0;
    transform: translateX(20px) scale(0);
    /* Sağa doğru süzülerek kaybolma */
}

.menu-btn.active .line:nth-of-type(3) {
    transform: translateY(-11.5px) rotate(-45deg);
    width: 100% !important;
}


.menu {

    background: #080a09e8;
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 130px 64px;
    height: 100vh;
    z-index: 100;
    color: var(--c-light) !important;
    font-family: var(--ff-display) !important;
    transform: translateY(-150%);
    transition: all 0.75s cubic-bezier(0.645, 0.045, 0.355, 1);
    backdrop-filter: blur(10px);


}

.menu.active {
    transform: translateY(0);
}


.menu-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.menu-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-nav-links a {
    color: var(--c-light) !important;
    font-family: var(--font-title) !important;
    text-decoration: none;
    font-size: var(--font-size-s);
    position: relative;
    width: fit-content;
}

.menu-nav-links a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: white;
    transition: all 0.25s ease;
    will-change: transform;
}

.menu-nav-links a:hover::before {
    width: 100%;
}

.menu-nav-links a.active {
    color: var(--c-gold) !important;
}


.menu-image-container {
    width: 60%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.menu-image {
    width: 100%;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px 20px #070a071a;
}

.menu-image img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    translate: -50% -50%;
    filter: contrast(1.2) grayscale(0.1) sepia(0.1);
    box-shadow: 0 0 10px 0 rgba(10, 49, 29, 0.663);
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.menu-image img.menu-slide.active {
    opacity: 1;
}

/* Slider indicators — image'ın altında, container'ın bottom kısmında */
.menu-slider-indicators {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 4px;
    flex-shrink: 0;
}

.menu-indicator {
    width: 26px;
    height: 2px;
    background: rgba(241, 244, 242, .3);
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: block;
    transition: background .4s ease, width .4s ease;
}

.menu-indicator:hover {
    background: rgba(241, 244, 242, .55);
}

.menu-indicator.active {
    background: var(--c-gold);
    width: 40px;
}



/* ─── HERO  (Ambience: full-bleed image, centered type, two CTAs) ─ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #2C3A31;
    background-image: url('images/herobg2.jpeg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f1f4f2' fill-opacity='0.03'%3E%3Ccircle cx='7' cy='7' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--gradient-2);
}

.hero-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.hero-eyebrow {
    position: relative;
    font-size: var(--font-size-xxs);
    letter-spacing: .30em;
    text-transform: uppercase;
    color: var(--c-gold);
    opacity: 0;
    animation: fadeUp .8s .3s forwards;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: -5px;
}

.hero-title {
    position: relative;
    font-family: var(--font-title) !important;
    font-weight: 500;
    font-size: clamp(3.4rem, 9vw, 6rem);
    color: var(--c-light);
    opacity: 0;
    letter-spacing: 0.1rem;
    animation: fadeUp .9s .5s forwards;
    line-height: 1.05;
}

.hero-title span {
    text-transform: lowercase;
    font-size: clamp(4rem, 11vw, 8rem);
}

.hero-subtitle {
    position: relative;
    font-size: var(--font-size-xxs);
    line-height: 1.6;
    color: var(--c-white);
    max-width: 600px;
    /* Genişliği ikonlar için biraz artırdım */
    margin: 0 auto 52px;
    font-family: var(--ff-display);
    opacity: 0;
    font-weight: 400;
    animation: fadeUp .8s .7s forwards;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '❧';
    /* Estetik bir fleuron/yaprak ikonu */
    font-size: 1.3rem;
    color: var(--c-gold);
    opacity: 0.7;
    font-style: normal;
}

.hero-subtitle::after {
    transform: scaleX(-1);
    /* Sağdaki ikonu simetrik yapmak için çevirdim */
}

.hero-btns {
    position: relative;
    display: flex;
    gap: 16px;
    justify-content: center;
    opacity: 0;
    animation: fadeUp .8s .9s forwards;
}

.btn-dark {

    background: var(--c-light);
    color: var(--c-dark);
    font-size: var(--font-size-xxxxs);
    letter-spacing: .15rem;
    text-transform: uppercase;
    padding: 16px 30px;
    text-decoration: none;
    font-family: var(--ff-display);
    transition: background var(--trans), color var(--trans), letter-spacing .3s;
    display: inline-block;
}

.btn-dark:hover {
    background: var(--c-gold);
    color: var(--c-white);
    letter-spacing: .26em;
}

.btn-outline-light {
    border: 1px solid rgba(241, 244, 242, .35);
    color: rgba(241, 244, 242, .8);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 16px 40px;
    text-decoration: none;
    font-family: var(--ff-body);
    transition: border-color .3s, color .3s;
    display: inline-block;
}

.btn-outline-light:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
}

/* hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp .6s 1.2s forwards;
}

.hero-scroll span {
    font-size: .55rem;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: rgba(241, 244, 242, .38);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(241, 244, 242, .35), transparent);
    animation: scrollPulse 2s 1.5s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: .35
    }

    50% {
        opacity: 1
    }
}

/* hero badge bottom-right */
.hero-badge {
    position: absolute;
    bottom: 80px;
    right: 64px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeUp .7s 1.1s forwards;
    padding-right: 20px;
    padding-bottom: 10px;
}

.hero-badge::after {
    content: "";
    position: absolute;
    right: 0;
    width: 2px;
    background: var(--c-gold);
    height: 100%;
}

.hero-badge-num {
    font-family: var(--ff-display);
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--c-light);
    line-height: 1;
    margin-bottom: 5px;
}

.hero-badge-label {
    font-size: var(--font-size-xxxxxs);
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(241, 244, 242, .45);
    margin-top: 4px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* ─── SOLUTIONS  (Ambience: "Explore Our Solutions" 3-card scroll row) ─ */
.solutions-section {
    padding: 120px 64px;
    background: var(--c-light);
}

.section-label {
    font-size: .6rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.12;
    color: var(--c-dark);
    margin-bottom: 56px;
}

.section-title em {
    font-style: italic;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.sol-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.sol-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.7) brightness(.85);
    transition: transform .8s var(--ease), filter .5s;
}

.sol-card:hover .sol-card-bg {
    transform: scale(1.06);
    filter: saturate(1) brightness(.8);
}

.sol-card-bg-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .8s var(--ease);
}

.sol-card:hover .sol-card-bg-placeholder {
    transform: scale(1.06);
}

.sol-bg-1 {
    background: linear-gradient(145deg, #3d5245, #2C3A31);
}

.sol-bg-2 {
    background: linear-gradient(145deg, #c8b89a, #b8a485);
}

.sol-bg-3 {
    background: linear-gradient(145deg, #5a7060, #3d5245);
}

.sol-card-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    transition: background .4s;
}

.sol-card:hover .sol-card-overlay {
    box-shadow: inset var(--gradient-1);
}

.sol-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 32px;
}

.sol-card-tag {
    font-size: .58rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 10px;
}

.sol-card-title {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--c-light);
    line-height: 1.2;
    margin-bottom: 12px;
}

.sol-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(241, 244, 242, .55);
    text-decoration: none;
    transition: color .3s, gap .3s;
}

.sol-card:hover .sol-card-link {
    color: var(--c-gold);
    gap: 14px;
}

.sol-card-link::after {
    content: '→';
    font-size: .85rem;
}

/* ─── ABOUT  (Ambience: text left, image right, stats below) ─ */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    background: var(--c-white);
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 80px;
}

.about-body {
    font-size: .9rem;
    line-height: 2;
    color: var(--c-mid);
    margin-bottom: 20px;
    letter-spacing: .02em;
}

.about-learn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--c-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--c-dark);
    padding-bottom: 3px;
    transition: color .3s, border-color .3s, gap .3s;
}

.about-learn:hover {
    color: var(--c-gold);
    border-color: var(--c-gold);
    gap: 16px;
}

.about-learn::after {
    content: '→';
}

.about-visual {
    position: relative;
    overflow: hidden;
}

.about-vis-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a6052 0%, #2C3A31 60%, #1e2920 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-vis-label {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(241, 244, 242, .2);
    text-align: center;
    padding: 24px;
}

.about-watermark {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-family: var(--ff-display);
    font-size: 7rem;
    font-weight: 700;
    color: rgba(241, 244, 242, .05);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -.04em;
}

.about-quote-box {
    position: absolute;
    bottom: 48px;
    left: -32px;
    background: var(--c-white);
    padding: 28px 36px;
    border-left: 3px solid var(--c-gold);
    box-shadow: 0 12px 48px rgba(0, 0, 0, .14);
    max-width: 320px;
}

.about-quote-text {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--c-dark);
    line-height: 1.6;
}

.about-quote-cite {
    font-size: .6rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-top: 12px;
}

/* stats bar */
/* stats bar */
.stats-bar {
    grid-column: 1/-1;
    background: var(--c-dark);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(241, 244, 242, .06);
}

.stat-item {
    padding: 52px 64px;
    border-right: 1px solid rgba(241, 244, 242, .07);
    position: relative;
    overflow: hidden;
    transition: background .35s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(241, 244, 242, .04);
}

.stat-num {
    font-family: var(--ff-display);
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--c-light);
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.stat-sup {
    font-size: 1.4rem;
    color: var(--c-gold);
}

.stat-label {
    font-size: .62rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(241, 244, 242, .38);
}

/* ─── HIZMETLER  (Ambience: "Featured Listings" card grid) ─ */
.services-section {
    padding: 140px 64px;
    background: var(--c-light);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 72px;
}

.services-intro {
    font-size: .85rem;
    line-height: 1.85;
    color: var(--c-mid);
    max-width: 380px;
    text-align: right;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.svc-card {
    background: var(--c-white);
    position: relative;
    transition: transform .4s var(--ease), box-shadow .4s;
    overflow: hidden;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(44, 58, 49, .14);
}

.svc-card-top {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.svc-card-top-inner {
    width: 100%;
    height: 100%;
    transition: transform .7s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-card:hover .svc-card-top-inner {
    transform: scale(1.08);
}

.svc-t1 {
    background: linear-gradient(145deg, #8fa396, #5a7060);
}

.svc-t2 {
    background: linear-gradient(145deg, #c8b89a, #a89070);
}

.svc-t3 {
    background: linear-gradient(145deg, #3d5245, #2C3A31);
}

.svc-card-icon {
    font-size: 2.4rem;
    opacity: .25;
}

.svc-card-num {
    position: absolute;
    top: 20px;
    left: 22px;
    font-family: var(--ff-display);
    font-size: .8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .55);
    letter-spacing: .1em;
}

.svc-card-body {
    padding: 36px 36px 40px;
}

.svc-card-tag {
    font-size: .56rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 10px;
}

.svc-card-title {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--c-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}

.svc-card-divider {
    width: 36px;
    height: 1px;
    background: var(--c-border);
    margin-bottom: 18px;
}

.svc-card-desc {
    font-size: .82rem;
    line-height: 1.85;
    color: var(--c-mid);
    margin-bottom: 24px;
}

.svc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.svc-feature {
    font-size: .72rem;
    color: var(--c-mid);
    display: flex;
    align-items: center;
    gap: 10px;
}

.svc-feature::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--c-gold);
    flex-shrink: 0;
}

.services-view-all {
    text-align: center;
    margin-top: 52px;
}

.btn-outline-dark {
    display: inline-block;
    border: 1px solid var(--c-dark);
    color: var(--c-dark);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 14px 40px;
    text-decoration: none;
    font-family: var(--ff-body);
    transition: background .3s, color .3s;
}

.btn-outline-dark:hover {
    background: var(--c-dark);
    color: var(--c-light);
}

/* ─── TESTIMONIAL  (Ambience: full-bleed quote + person photo) ─ */
.testimonial-section {
    background: var(--c-dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 60vh;
}

.testimonial-visual {
    position: relative;
    overflow: hidden;
}

.test-vis-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #3d5245, #1e2920);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
}

.test-label {
    font-size: .58rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 28px;
}

.test-quote {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.65;
    color: var(--c-light);
    margin-bottom: 40px;
}

.test-quote::before {
    content: '\201C';
    font-size: 3.5rem;
    color: var(--c-gold);
    line-height: .5;
    display: block;
    margin-bottom: 16px;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.test-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(145deg, #5a7060, #3d5245);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-size: 1.1rem;
    color: var(--c-light);
    border: 2px solid var(--c-gold);
}

.test-name {
    font-size: .85rem;
    color: var(--c-light);
    font-weight: 400;
}

.test-role {
    font-size: .6rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(241, 244, 242, .4);
    margin-top: 3px;
}

/* ─── FAQ / SÜREÇ  (Ambience: accordion FAQ) ─ */
.faq-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--c-white);
}

.faq-visual {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #c8b89a 0%, #a89070 100%);
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding: 56px;
}

.faq-vis-label {
    font-family: var(--ff-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .12);
    line-height: 1;
    letter-spacing: -.03em;
}

.faq-content {
    padding: 100px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-list {
    margin-top: 48px;
    border-top: 1px solid var(--c-border);
}

.faq-item {
    border-bottom: 1px solid var(--c-border);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    text-align: left;
    gap: 16px;
}

.faq-q-text {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--c-dark);
    line-height: 1.35;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--c-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .3s, border-color .3s, transform .35s;
    font-size: .75rem;
    color: var(--c-dark);
}

.faq-item.open .faq-icon {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: #fff;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.4, 0, .2, 1), padding .35s;
}

.faq-a-inner {
    font-size: .84rem;
    line-height: 1.9;
    color: var(--c-mid);
    padding-bottom: 24px;
}

.faq-item.open .faq-a {
    max-height: 300px;
}

/* ─── CTA BANNER  (Ambience: "Buy, Sell & Rent Easily") ─ */
.cta-section {
    position: relative;
    overflow: hidden;
    background: var(--c-dark2);
    padding: 120px 64px;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    border: 1px solid rgba(180, 154, 110, .08);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(180, 154, 110, .06);
    pointer-events: none;
}

.cta-label {
    font-size: .6rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 20px;
}

.cta-title {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1.06;
    color: var(--c-light);
    margin-bottom: 16px;
}

.cta-title em {
    font-style: italic;
    color: rgba(241, 244, 242, .55);
}

.cta-sub {
    font-size: .9rem;
    color: rgba(241, 244, 242, .5);
    margin-bottom: 52px;
    line-height: 1.8;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── FOOTER  (Ambience: newsletter + links columns) ─ */
footer {
    background: var(--c-dark);
    padding: 80px 64px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    text-align: center;
    justify-items: center;
}

.footer-bottom {
    margin-top: 60px;
    text-align: center;
}

.footer-brand {
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-family: var(--ff-display);
    font-size: 1rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--c-light);
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: .8rem;
    line-height: 1.85;
    color: rgba(241, 244, 242, .38);
    margin-bottom: 36px;
    max-width: 260px;
}

.newsletter-form {
    justify-content: center;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-input {
    flex: 1;
    background: rgba(241, 244, 242, .06);
    border: 1px solid rgba(241, 244, 242, .1);
    color: var(--c-light);
    padding: 12px 16px;
    font-size: .78rem;
    font-family: var(--ff-body);
    outline: none;
    transition: border-color .3s;
}

.newsletter-input::placeholder {
    color: rgba(241, 244, 242, .3);
}

.newsletter-input:focus {
    border-color: var(--c-gold);
}

.newsletter-btn {
    background: var(--c-gold);
    border: none;
    color: var(--c-white);
    padding: 12px 20px;
    cursor: pointer;
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-family: var(--ff-body);
    transition: background .3s;
}

.newsletter-btn:hover {
    background: #c4aa7e;
}

.footer-col-title {
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: .8rem;
    color: rgba(241, 244, 242, .45);
    text-decoration: none;
    transition: color .25s;
}

.footer-links a:hover {
    color: var(--c-light);
}

.footer-contact-item {
    font-size: .8rem;
    color: rgba(241, 244, 242, .45);
    margin-bottom: 10px;
    line-height: 1.7;
}

.footer-contact-item a {
    color: rgba(241, 244, 242, .45);
    text-decoration: none;
    transition: color .25s;
}

.footer-contact-item a:hover {
    color: var(--c-light);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.footer-copy {
    font-size: .65rem;
    letter-spacing: .12em;
    color: rgba(241, 244, 242, .25);
}

/* ─── MARQUEE ─────────────────────────── */
.marquee-wrap {
    background: var(--c-gold);
    padding: 14px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 24s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-size: .62rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    padding: 0 44px;
    flex-shrink: 0;
}

.marquee-item b {
    color: rgba(255, 255, 255, .35);
    margin-right: 44px;
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ─── PAGE HERO (alt sayfalar için kısa hero) ─── */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #2C3A31;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    background-repeat: no-repeat;
}

.page-hero .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f1f4f2' fill-opacity='0.03'%3E%3Ccircle cx='7' cy='7' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--gradient-2);
}

.page-hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: .65rem;
    letter-spacing: .25em;
    text-transform: uppercase;
}

.page-hero-breadcrumb a {
    color: rgba(241, 244, 242, .5);
    text-decoration: none;
    transition: color .3s;
}

.page-hero-breadcrumb a:hover {
    color: var(--c-gold);
}

.page-hero-breadcrumb span {
    color: rgba(241, 244, 242, .3);
}

.page-hero-breadcrumb .breadcrumb-current {
    color: var(--c-gold);
}

.page-hero-label {
    font-size: .6rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp .8s .3s forwards;
}

.page-hero-title {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--c-light);
    letter-spacing: 0.08rem;
    opacity: 0;
    animation: fadeUp .9s .5s forwards;
    line-height: 1.15;
}

.page-hero-subtitle {
    font-size: var(--font-size-xxs);
    line-height: 1.6;
    color: rgba(255, 255, 255, .7);
    max-width: 560px;
    margin-top: 16px;
    font-family: var(--ff-display);
    opacity: 0;
    font-weight: 300;
    animation: fadeUp .8s .7s forwards;
    font-style: italic;
}

/* ─── SERVICE DETAILED SECTIONS ─── */
.service-intro-section {
    padding: 120px 64px 40px;
    background: var(--c-light);
    text-align: center;
}

.service-intro-section .section-title {
    margin-bottom: 24px;
}

.service-intro-text {
    max-width: 640px;
    margin: 0 auto;
    font-size: .95rem;
    line-height: 1.95;
    color: var(--c-mid);
    letter-spacing: .015em;
}

.service-detail-section {
    background: var(--c-light);
    padding: 0;
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: var(--c-white);
    border-top: 1px solid var(--c-border);
    min-height: 75vh;
    position: relative;
}

.service-detail-row:nth-child(even) {
    background: var(--c-light);
}

.service-detail-row:nth-child(even) .service-detail-visual {
    order: 2;
}

.service-detail-visual {
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    background: var(--c-dark);
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease), filter .6s ease;
    filter: saturate(.9) brightness(.95);
}

.service-detail-row:hover .service-detail-visual img {
    transform: scale(1.045);
    filter: saturate(1) brightness(1);
}

.service-detail-num {
    position: absolute;
    top: 36px;
    left: 36px;
    z-index: 2;
    font-family: var(--ff-display);
    font-size: 3.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .9);
    line-height: 1;
    letter-spacing: -.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
}

.service-detail-num::after {
    content: '';
    display: block;
    width: 56px;
    height: 1px;
    background: var(--c-gold);
    margin-top: 14px;
}

.service-detail-content {
    padding: 110px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
}

.service-detail-row:nth-child(even) .service-detail-content {
    margin-left: auto;
}

.service-detail-tag {
    font-size: .58rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 18px;
}

.service-detail-title {
    font-family: var(--ff-display);
    font-size: clamp(2.1rem, 3.4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--c-dark);
    margin-bottom: 26px;
    letter-spacing: -.005em;
}

.service-detail-title em {
    font-style: italic;
    color: var(--c-gold);
    font-weight: 400;
}

.service-detail-desc {
    font-size: .92rem;
    line-height: 2.0;
    color: var(--c-mid);
    margin-bottom: 36px;
    letter-spacing: .015em;
}

.service-detail-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    margin: 0 0 40px;
    padding: 28px 0 0;
    border-top: 1px solid var(--c-border);
}

.service-detail-features li {
    font-size: .8rem;
    color: var(--c-mid);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
    letter-spacing: .01em;
}

.service-detail-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--c-gold);
    margin-top: 7px;
    flex-shrink: 0;
}

.service-detail-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.service-detail-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: .65rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--c-light);
    background: var(--c-dark);
    text-decoration: none;
    padding: 16px 32px;
    transition: background .35s ease, gap .35s ease, color .35s ease;
    font-family: var(--ff-body);
}

.service-detail-cta:hover {
    background: var(--c-gold);
    gap: 18px;
}

.service-detail-cta svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    transition: transform .35s ease;
}

.service-detail-cta:hover svg {
    transform: translateX(3px);
}

.service-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .65rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--c-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--c-dark);
    padding: 12px 0 6px;
    transition: color .3s, border-color .3s, gap .3s;
}

.service-detail-link:hover {
    color: var(--c-gold);
    border-color: var(--c-gold);
    gap: 14px;
}

/* ─── PROCESS / SÜREÇ ADIMLARI ─── */
.process-section {
    padding: 140px 64px;
    background: var(--c-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    margin-top: 60px;
}

.process-step {
    background: var(--c-light);
    padding: 48px 36px;
    position: relative;
    transition: transform .4s var(--ease), box-shadow .4s;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(44, 58, 49, .1);
}

.process-step-num {
    font-family: var(--ff-display);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--c-gold2);
    line-height: 1;
    margin-bottom: 24px;
}

.process-step-title {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--c-dark);
    margin-bottom: 14px;
    line-height: 1.3;
}

.process-step-desc {
    font-size: .82rem;
    line-height: 1.85;
    color: var(--c-mid);
}

/* ─── BLOG PREVIEW (Anasayfa) ─── */
.blog-preview-section {
    padding: 140px 64px;
    background: var(--c-light);
    position: relative;
}

.blog-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--c-gold);
    opacity: .35;
}

.blog-preview-section .services-header {
    margin-bottom: 72px;
}

.blog-preview-section .blog-grid {
    margin-bottom: 0;
}

/* ─── BLOG KARTLARI ─── */
.blog-section {
    padding: 120px 64px;
    background: var(--c-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

/* ─── BLOG CARD — Overlay Editorial Design ─── */
.blog-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 5/6;
    background: var(--c-dark);
    isolation: isolate;
    transition: transform .5s var(--ease);
}

.blog-card-link-wrap {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.blog-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease), filter .6s ease;
    filter: saturate(.85) brightness(.88);
    z-index: 0;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.07);
    filter: saturate(1.05) brightness(.7);
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
        rgba(20, 28, 22, .05) 0%,
        rgba(20, 28, 22, .35) 38%,
        rgba(20, 28, 22, .82) 72%,
        rgba(20, 28, 22, .95) 100%);
    transition: background .5s ease;
}

.blog-card:hover .blog-card-overlay {
    background: linear-gradient(180deg,
        rgba(20, 28, 22, .25) 0%,
        rgba(20, 28, 22, .5) 38%,
        rgba(20, 28, 22, .9) 72%,
        rgba(20, 28, 22, .98) 100%);
}

/* Gold corner ornament on hover */
.blog-card::before {
    content: '';
    position: absolute;
    top: 22px;
    right: 22px;
    width: 28px;
    height: 28px;
    border-top: 1px solid var(--c-gold);
    border-right: 1px solid var(--c-gold);
    opacity: 0;
    transform: translate(-8px, 8px);
    transition: opacity .55s ease, transform .55s var(--ease);
    z-index: 3;
    pointer-events: none;
}

.blog-card:hover::before {
    opacity: 1;
    transform: translate(0, 0);
}

.blog-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 32px 28px;
    color: var(--c-light);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .55s var(--ease);
}

.blog-card:hover .blog-card-content {
    transform: translateY(-4px);
}

.blog-card-cat {
    align-self: flex-start;
    font-size: .55rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--c-gold);
    padding: 7px 14px 6px;
    border: 1px solid rgba(180, 154, 110, .5);
    background: rgba(20, 28, 22, .4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.blog-card-title {
    font-family: var(--ff-display);
    font-size: 1.32rem;
    font-weight: 400;
    line-height: 1.32;
    color: var(--c-light);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .35s ease;
    letter-spacing: .005em;
}

.blog-card:hover .blog-card-title {
    color: #f6e6c3;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    padding-top: 16px;
    border-top: 1px solid rgba(241, 244, 242, .15);
}

.blog-card-date {
    font-size: .58rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(241, 244, 242, .55);
    font-family: var(--ff-body);
}

.blog-card-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(241, 244, 242, .28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-light);
    transition: background .4s ease, border-color .4s ease;
    flex-shrink: 0;
}

.blog-card-arrow svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    transition: transform .4s var(--ease);
}

.blog-card:hover .blog-card-arrow {
    background: var(--c-gold);
    border-color: var(--c-gold);
}

.blog-card:hover .blog-card-arrow svg {
    transform: translateX(3px);
}

/* Focus ring */
.blog-card-link-wrap:focus-visible {
    outline: 2px solid var(--c-gold);
    outline-offset: -2px;
}

/* ─── MAKALE DETAY ─── */
.article-section {
    padding: 100px 64px;
    background: var(--c-white);
}

.article-container {
    max-width: 760px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 32px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--c-border);
}

.article-meta-item {
    font-size: .62rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--c-muted);
}

.article-meta-item strong {
    color: var(--c-dark);
    font-weight: 400;
}

.article-content h2 {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--c-dark);
    margin-bottom: 20px;
    margin-top: 48px;
    line-height: 1.3;
}

.article-content h3 {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--c-dark);
    margin-bottom: 16px;
    margin-top: 36px;
    line-height: 1.35;
}

.article-content p {
    font-size: .9rem;
    line-height: 2;
    color: var(--c-mid);
    margin-bottom: 20px;
    letter-spacing: .02em;
}

.article-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding-left: 0;
}

.article-content ul li {
    font-size: .82rem;
    color: var(--c-mid);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.85;
}

.article-content ul li::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--c-gold);
    flex-shrink: 0;
}

.article-content blockquote {
    border-left: 3px solid var(--c-gold);
    padding: 24px 32px;
    margin: 36px 0;
    background: var(--c-light);
}

.article-content blockquote p {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--c-dark);
    margin-bottom: 0;
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--c-border);
}

.article-tag {
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--c-mid);
    padding: 8px 18px;
    border: 1px solid var(--c-border);
    text-decoration: none;
    transition: border-color .3s, color .3s;
}

.article-tag:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
}

/* ─── İLGİLİ YAZILAR ─── */
.related-section {
    padding: 100px 64px;
    background: var(--c-light);
}

.newsletter-label {
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 14px;
}

/* ─── REVEAL ANIMATION ───────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* ─── RESPONSIVE ─────────────────────── */
@media(max-width:1100px) {
    header {
        padding: 22px 36px;
    }

    header.scrolled {
        padding: 14px 36px;
    }

    .nav-links {
        display: none;
    }

    .hero-badge {
        right: 36px;
    }

    .solutions-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 55vw;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-section {
        grid-template-columns: 1fr;
    }

    .testimonial-visual {
        display: none;
    }

    .faq-section {
        grid-template-columns: 1fr;
    }

    .faq-visual {
        display: none;
    }

    .faq-content {
        padding: 80px 40px;
    }

    footer {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        padding: 60px 40px;
    }

    .solutions-section,
    .services-section,
    .cta-section {
        padding: 100px 36px;
    }

    .about-text {
        padding: 80px 40px;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .services-intro {
        text-align: left;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-intro-section {
        padding: 100px 36px 20px;
    }

    .service-detail-row,
    .service-detail-row:nth-child(even) {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .service-detail-row:nth-child(even) .service-detail-visual {
        order: 0;
    }

    .service-detail-visual {
        min-height: 0;
        height: 50vh;
        max-height: 460px;
    }

    .service-detail-content,
    .service-detail-row:nth-child(even) .service-detail-content {
        padding: 70px 40px;
        margin-left: 0;
        max-width: 100%;
    }

    .service-detail-num {
        font-size: 2.4rem;
        top: 28px;
        left: 28px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .blog-card {
        aspect-ratio: 16/11;
        max-height: 460px;
    }

    .blog-card-content {
        padding: 28px 24px;
    }

    .blog-card-title {
        font-size: 1.25rem;
    }

    .blog-section,
    .blog-preview-section,
    .process-section,
    .article-section,
    .related-section {
        padding: 100px 36px;
    }

    .article-meta {
        flex-wrap: wrap;
    }
}

@media(max-width:640px) {
    header {
        padding: 18px 24px;
    }

    header.scrolled {
        padding: 13px 24px;
    }

    .hero-badge {
        display: none;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .btn-dark,
    .btn-outline-light {
        width: 100%;
        text-align: center;
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(241, 244, 242, .07);
        padding: 36px 32px;
    }

    footer {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 56px 24px;
    }

    .solutions-section,
    .services-section,
    .cta-section,
    .about-text,
    .faq-content {
        padding: 80px 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
        padding: 12px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-intro-section {
        padding: 80px 24px 10px;
    }

    .service-detail-content,
    .service-detail-row:nth-child(even) .service-detail-content {
        padding: 56px 24px;
    }

    .service-detail-features {
        grid-template-columns: 1fr;
        padding: 24px 0 0;
    }

    .service-detail-title {
        font-size: 1.85rem;
    }

    .service-detail-num {
        font-size: 2rem;
        top: 22px;
        left: 22px;
    }

    .service-detail-visual {
        height: 44vh;
        max-height: 380px;
    }

    .service-detail-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .service-detail-cta {
        justify-content: center;
    }

    .service-detail-link {
        align-self: flex-start;
    }

    .blog-section,
    .blog-preview-section,
    .process-section,
    .article-section,
    .related-section {
        padding: 80px 24px;
    }

    .blog-card {
        aspect-ratio: 4/5;
        max-height: 520px;
    }

    .blog-card-content {
        padding: 24px 20px;
        gap: 12px;
    }

    .blog-card-title {
        font-size: 1.15rem;
    }

    .blog-card-arrow {
        width: 34px;
        height: 34px;
    }

    .page-hero {
        height: 50vh;
        min-height: 320px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .about-quote-box {
        position: relative;
        left: 0;
        right: 0;
        bottom: 0;
        max-width: 100%;
        margin: 24px;
    }

    .about-watermark {
        font-size: 4rem;
        bottom: 20px;
        right: 20px;
    }

    .hero-title {
        font-size: clamp(3rem, 12vw, 5rem);
    }

    .hero-title span {
        font-size: clamp(3.5rem, 14vw, 6rem);
    }

    .hero-subtitle {
        font-size: 1.05rem;
        padding: 0 20px;
    }

    .testimonial-content {
        padding: 60px 24px;
    }

    .marquee-item {
        padding: 0 24px;
        font-size: .56rem;
    }

    .marquee-item b {
        margin-right: 24px;
    }
}

/* ─── SOCIAL ICONS ───────────────────── */
.menu-nav-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.menu-nav-social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(241, 244, 242, .25);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-light);
    text-decoration: none;
    transition: all .3s ease;
}

.menu-nav-social-links a:hover {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: var(--c-white);
    transform: translateY(-3px);
}

.menu-nav-social-links a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ─── FLOATING ACTION BUTTON (FAB) ─── */
.fab-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.fab-main {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 25%, rgba(180, 154, 110, .18), transparent 60%),
        linear-gradient(145deg, #344439 0%, #2C3A31 48%, #1c2620 100%);
    border: none;
    color: var(--c-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 14px 36px rgba(20, 28, 22, .45),
        0 0 0 1px rgba(180, 154, 110, .32),
        inset 0 1px 0 rgba(255, 255, 255, .06);
    transition:
        transform .35s cubic-bezier(.4, 0, .2, 1),
        background .45s ease,
        box-shadow .45s ease,
        color .4s ease;
    position: relative;
    padding: 0;
    font-family: inherit;
}

/* Dış pulse halkası — kapalıyken yumuşak nefes alma */
.fab-main::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid rgba(180, 154, 110, .55);
    opacity: 0;
    animation: fabRefinedPulse 3s ease-out infinite;
    pointer-events: none;
}

.fab-main.active::after {
    animation: none;
    opacity: 0;
}

@keyframes fabRefinedPulse {
    0% { transform: scale(.92); opacity: .6 }
    100% { transform: scale(1.32); opacity: 0 }
}

.fab-main:hover {
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .28), transparent 60%),
        linear-gradient(145deg, #c8aa7e 0%, var(--c-gold) 50%, #95764f 100%);
    color: var(--c-white);
    box-shadow:
        0 20px 46px rgba(180, 154, 110, .5),
        0 0 0 1px rgba(180, 154, 110, .6),
        inset 0 1px 0 rgba(255, 255, 255, .28);
    transform: translateY(-2px);
}

.fab-main:active {
    transform: translateY(0) scale(.97);
}

.fab-main.active {
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .28), transparent 60%),
        linear-gradient(145deg, #c8aa7e 0%, var(--c-gold) 50%, #95764f 100%);
    color: var(--c-white);
    box-shadow:
        0 20px 46px rgba(180, 154, 110, .55),
        0 0 0 1px rgba(180, 154, 110, .7),
        inset 0 1px 0 rgba(255, 255, 255, .3);
}

.fab-main svg {
    width: 22px;
    height: 22px;
    position: absolute;
    transition: opacity .35s ease, transform .5s cubic-bezier(.4, 0, .2, 1);
    overflow: visible;
}

.fab-icon-close {
    opacity: 0;
    transform: scale(.55) rotate(45deg);
}

.fab-main.active .fab-icon-open {
    opacity: 0;
    transform: scale(.55) rotate(-45deg);
}

.fab-main.active .fab-icon-close {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.fab-options {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
}

.fab-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--c-light);
    color: var(--c-dark);
    border: 1px solid var(--c-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(44, 58, 49, .18);
    opacity: 0;
    transform: translateY(24px) scale(.5);
    pointer-events: none;
    transition: opacity .4s ease, transform .5s cubic-bezier(.34, 1.56, .64, 1), background .3s ease, color .3s ease, border-color .3s ease;
    position: relative;
}

.fab-option:hover {
    background: var(--c-dark);
    color: var(--c-gold);
    border-color: var(--c-dark);
    transform: translateY(0) scale(1.06);
}

.fab-option svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Staggered reveal */
.fab-container.open .fab-option {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.fab-container.open .fab-option:nth-child(1) { transition-delay: .04s }
.fab-container.open .fab-option:nth-child(2) { transition-delay: .12s }
.fab-container.open .fab-option:nth-child(3) { transition-delay: .20s }

/* Tooltips — sol tarafta açılır */
.fab-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: var(--c-dark);
    color: var(--c-light);
    padding: 8px 16px;
    font-size: .56rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
    font-family: var(--ff-body);
    border: 1px solid rgba(180, 154, 110, .25);
}

.fab-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--c-dark);
}

.fab-option:hover .fab-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Backdrop behind FAB when open (subtle blur) */
.fab-backdrop {
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 89;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.fab-container.open ~ .fab-backdrop,
.fab-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}

/* ─── SCROLL TO TOP BUTTON ─────────── */
.scroll-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 44px;
    height: 44px;
    background: var(--c-dark);
    border: 1px solid var(--c-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all .35s ease;
    z-index: 90;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--c-gold);
}

.scroll-top svg {
    width: 18px;
    height: 18px;
    stroke: var(--c-light);
    transition: stroke .3s ease;
}

.scroll-top:hover svg {
    stroke: var(--c-white);
}

/* ─── CONTACT SECTION ──────────────── */
.contact-section {
    padding: 120px 64px;
    background: var(--c-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 60px auto 0;
    align-items: start;
}

.contact-info {
    background: var(--c-dark);
    color: var(--c-light);
    padding: 56px 44px;
    position: relative;
    align-self: stretch;
}

.contact-info-title {
    font-family: var(--ff-display);
    font-size: 1.45rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.contact-info-desc {
    font-size: .85rem;
    line-height: 1.8;
    color: rgba(241, 244, 242, .6);
    margin-bottom: 36px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border: 1px solid var(--c-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
}

.contact-info-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.contact-info-label {
    font-size: .58rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: .9rem;
    color: var(--c-light);
    line-height: 1.5;
    text-decoration: none;
    transition: color .3s;
}

a.contact-info-value:hover {
    color: var(--c-gold);
}

.contact-form {
    background: var(--c-white);
    padding: 56px 44px;
    box-shadow: 0 12px 48px rgba(44, 58, 49, .08);
    border: 5px double var(--c-dark2);
}

.contact-form-title {
    font-family: var(--ff-display);
    font-size: 1.45rem;
    color: var(--c-dark);
    margin-bottom: 8px;
}

.contact-form-desc {
    font-size: .82rem;
    color: var(--c-mid);
    margin-bottom: 32px;
    line-height: 1.7;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.form-label {
    font-size: .6rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--c-mid);
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--c-border);
    padding: 10px 0;
    font-size: .9rem;
    color: var(--c-dark);
    font-family: var(--ff-body);
    outline: none;
    transition: border-color .3s;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--c-gold);
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

.form-submit {
    background: var(--c-dark);
    color: var(--c-light);
    border: none;
    padding: 16px 36px;
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-family: var(--ff-display);
    cursor: pointer;
    transition: background .3s, letter-spacing .3s;
    margin-top: 10px;
    width: 100%;
}

.form-submit:hover {
    background: var(--c-gold);
    letter-spacing: .26em;
}

.form-feedback {
    margin-top: 14px;
    font-size: .78rem;
    color: var(--c-gold);
    min-height: 18px;
}

.form-feedback.success {
    color: #2c8a4a;
}

.form-feedback.error {
    color: #c0392b;
}

/* ─── MAP EMBED ──────────────────── */
.contact-map {
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(44, 58, 49, .08);
}

.contact-map iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
    filter: grayscale(.3) contrast(.95);
}

/* ─── 404 PAGE ─────────────────── */
.notfound-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 24px 100px;
    background: var(--c-light);
    text-align: center;
}

.notfound-container {
    max-width: 600px;
}

.notfound-code {
    font-family: var(--font-title);
    font-size: clamp(6rem, 16vw, 11rem);
    line-height: 1;
    color: var(--c-dark);
    letter-spacing: .04em;
    margin-bottom: 12px;
}

.notfound-title {
    font-family: var(--ff-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--c-dark);
    margin-bottom: 16px;
}

.notfound-desc {
    font-size: .92rem;
    line-height: 1.8;
    color: var(--c-mid);
    margin-bottom: 36px;
}

.notfound-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.notfound-btns .btn-outline-dark {
    border: 1px solid var(--c-dark);
}

/* ─── CONTACT RESPONSIVE ─────────── */
@media(max-width:1100px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-section {
        padding: 100px 36px;
    }

    .contact-info,
    .contact-form {
        padding: 44px 32px;
    }
}

@media(max-width:640px) {
    .contact-section {
        padding: 80px 24px;
    }

    .contact-info,
    .contact-form {
        padding: 36px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .fab-container {
        bottom: 18px;
        right: 18px;
        gap: 10px;
    }

    .fab-main {
        width: 56px;
        height: 56px;
    }

    .fab-main svg {
        width: 20px;
        height: 20px;
    }

    .fab-option {
        width: 46px;
        height: 46px;
    }

    .fab-option svg {
        width: 20px;
        height: 20px;
    }

    .fab-tooltip {
        font-size: .52rem;
        padding: 6px 12px;
    }

    .scroll-top {
        bottom: 18px;
        left: 18px;
        width: 40px;
        height: 40px;
    }

    .contact-map iframe {
        height: 300px;
    }
}

/* ─── FOOTER SOCIAL ROW ─────────── */
.footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(241, 244, 242, .15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(241, 244, 242, .55);
    transition: all .3s ease;
}

.footer-social a:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

/* ─── BLOG PAGINATION (Future) ──── */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 56px;
}

.blog-pagination a,
.blog-pagination span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: var(--c-dark);
    text-decoration: none;
    border: 1px solid var(--c-border);
    transition: all .3s ease;
}

.blog-pagination a:hover,
.blog-pagination .active {
    background: var(--c-dark);
    color: var(--c-light);
    border-color: var(--c-dark);
}

/* ─── COOKIE / NOSCRIPT (Optional) ─ */
noscript {
    display: block;
    padding: 12px 24px;
    background: var(--c-dark);
    color: var(--c-light);
    text-align: center;
    font-size: .85rem;
}

/* ─── PERFORMANCE: Image Defaults ─ */
img {
    max-width: 100%;
    height: auto;
}

/* ─── FOCUS ACCESSIBILITY ──────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.menu-btn:focus-visible {
    outline: 2px solid var(--c-gold);
    outline-offset: 3px;
}