:root {
    --navy: #07101f;
    --navy-soft: #0d1c32;
    --blue: #02a9e9;
    --gold: #e8b452;
    --gold-light: #f8dd9a;
    --cream: #f7f5f0;
    --white: #fff;
    --ink: #111c2c;
    --muted: #657080;
    --border: rgba(7, 16, 31, .11);
    --font: "Manrope", sans-serif;
    --serif: "Playfair Display", serif;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--font); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 118px 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.topbar { position: relative; z-index: 40; color: #dbe5f2; background: #040b14; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 12px; letter-spacing: .03em; }
.topbar__inner { height: 35px; display: flex; align-items: center; justify-content: space-between; }
.topbar a { display: flex; align-items: center; gap: 8px; color: var(--gold-light); font-weight: 700; }
.topbar svg { width: 14px; height: 14px; }
.site-header { position: absolute; z-index: 30; top: 35px; left: 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.12); transition: background .3s, box-shadow .3s, top .3s; }
.site-header.is-scrolled { position: fixed; top: 0; background: rgba(7,16,31,.96); box-shadow: 0 12px 35px rgba(0,0,0,.18); backdrop-filter: blur(14px); }
.nav { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.brand img { width: 62px; height: 62px; object-fit: cover; border-radius: 50%; box-shadow: 0 0 0 1px rgba(232,180,82,.35); }
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand strong { color: var(--gold-light); font-size: 24px; letter-spacing: .12em; }
.brand small { margin-top: 5px; color: #e9f3ff; font-size: 9px; letter-spacing: .3em; }
.nav-links { display: flex; align-items: center; gap: 32px; color: #ecf4ff; font-size: 13px; font-weight: 600; }
.nav-links > a:not(.nav-cta) { position: relative; padding: 31px 0; }
.nav-links > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: 23px; left: 0; height: 1px; content: ""; background: var(--gold); transform: scaleX(0); transition: transform .3s; }
.nav-links > a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 13px 20px; color: var(--navy); background: linear-gradient(135deg, var(--gold-light), var(--gold)); border-radius: 4px; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; color: white; background: transparent; border: 1px solid rgba(255,255,255,.2); border-radius: 4px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: .3s; }

.hero { position: relative; min-height: 800px; height: 100vh; overflow: hidden; color: white; background: var(--navy); }
.hero__image, .hero__overlay { position: absolute; inset: 0; }
.hero__image { background: url("../images/hero-koltuk-yikama.png") center/cover no-repeat; animation: heroZoom 16s ease-out both; }
.hero__overlay { background: linear-gradient(90deg, rgba(4,11,20,.98) 0%, rgba(5,14,26,.92) 33%, rgba(5,14,26,.45) 62%, rgba(5,14,26,.18) 100%), linear-gradient(0deg, rgba(4,11,20,.72), transparent 40%); }
.hero__content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; padding-top: 90px; }
.hero__copy { width: min(690px, 100%); }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: var(--gold-light); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow > span { width: 34px; height: 1px; background: currentColor; }
.eyebrow--dark { color: #aa7b27; }
.hero h1, .section-heading h2, .quality h2, .cta h2 { margin: 0; font-family: var(--serif); font-weight: 600; }
.hero h1 { max-width: 700px; font-size: clamp(54px, 6.2vw, 88px); line-height: .98; letter-spacing: -.035em; }
.hero h1 span, h2 em { color: var(--gold-light); font-style: italic; }
.hero__description { max-width: 610px; margin: 28px 0 34px; color: #ced9e7; font-size: 17px; line-height: 1.8; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; }
.btn { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 24px; border: 1px solid transparent; border-radius: 4px; font-size: 14px; font-weight: 800; transition: transform .25s, box-shadow .25s, background .25s; }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn--gold { color: var(--navy); background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 14px 32px rgba(232,180,82,.18); }
.btn--glass { color: white; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.07); backdrop-filter: blur(10px); }
.btn--glass svg { margin-left: 8px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; color: #d7e2ef; font-size: 12px; font-weight: 600; }
.hero__badges span { display: flex; align-items: center; gap: 8px; }
.hero__badges i { width: 20px; height: 20px; display: grid; place-items: center; color: var(--gold-light); background: rgba(232,180,82,.1); border: 1px solid rgba(232,180,82,.32); border-radius: 50%; font-size: 10px; font-style: normal; }
.scroll-hint { position: absolute; z-index: 3; right: 42px; bottom: 46px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.65); font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right bottom; }
.scroll-hint span { width: 40px; height: 1px; background: var(--gold); }

.services { position: relative; background: var(--cream); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 54px; }
.section-heading > div { flex: 1; }
.section-heading h2, .quality h2 { color: var(--ink); font-size: clamp(40px, 5vw, 62px); line-height: 1.05; letter-spacing: -.025em; }
.section-heading h2 em, .quality h2 em { color: #b4812f; }
.section-heading > p { max-width: 450px; margin: 0 0 6px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { overflow: hidden; background: white; border: 1px solid var(--border); border-radius: 5px; box-shadow: 0 18px 50px rgba(7,16,31,.055); transition: transform .35s, box-shadow .35s; }
.service-card:nth-child(2) { transition-delay: .08s; }
.service-card:nth-child(3) { transition-delay: .16s; }
.service-card:nth-child(4) { transition-delay: .24s; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(7,16,31,.13); }
.service-card__visual { position: relative; height: 230px; background-image: url("../images/hizmetler-grid.png"); background-size: 200% 200%; }
.service-card__visual::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 45%, rgba(7,16,31,.62)); }
.service-card__visual--koltuk { background-position: 0 0; }
.service-card__visual--yatak { background-position: 100% 0; }
.service-card__visual--sandalye { background-position: 0 100%; }
.service-card__visual--hali { background-position: 100% 100%; }
.service-card__visual span { position: absolute; z-index: 2; right: 18px; bottom: 15px; color: rgba(255,255,255,.9); font-family: var(--serif); font-size: 28px; }
.service-card__body { padding: 25px 23px 26px; }
.service-card h3 { margin: 0 0 13px; font-family: var(--serif); font-size: 22px; }
.service-card p { min-height: 93px; margin: 0 0 18px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.service-card a { display: inline-flex; align-items: center; gap: 9px; color: #9b6b1e; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.service-card a svg { width: 17px; transition: transform .25s; }
.service-card a:hover svg { transform: translateX(5px); }
.service-area { margin-top: 34px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 25px; padding: 28px 32px; color: white; background: linear-gradient(110deg, var(--navy), var(--navy-soft)); border-radius: 5px; box-shadow: 0 22px 50px rgba(7,16,31,.12); }
.service-area__icon { width: 58px; height: 58px; display: grid; place-items: center; color: var(--gold-light); border: 1px solid rgba(232,180,82,.35); border-radius: 50%; }
.service-area__icon svg { width: 27px; height: 27px; }
.service-area .eyebrow { margin-bottom: 7px; font-size: 10px; }
.service-area h3 { margin: 0 0 5px; font-family: var(--serif); font-size: 25px; }
.service-area > div > p:last-child { max-width: 710px; margin: 0; color: #9eafc2; font-size: 12px; line-height: 1.65; }

.gallery { background: #fff; }
.gallery-grid { display: grid; grid-template-columns: 1.25fr .9fr .9fr; grid-template-rows: 235px 235px; gap: 18px; }
.gallery-card { position: relative; min-width: 0; margin: 0; overflow: hidden; background: var(--navy); border-radius: 5px; }
.gallery-card--1 { grid-row: 1 / 3; }
.gallery-card--2 { grid-column: 2 / 4; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 48%, rgba(4,11,20,.82)); pointer-events: none; }
.gallery-card figcaption { position: absolute; z-index: 2; right: 22px; bottom: 19px; left: 22px; display: flex; align-items: center; justify-content: space-between; color: white; }
.gallery-card figcaption span { color: var(--gold-light); font-family: var(--serif); font-size: 18px; }
.gallery-card figcaption strong { font-size: 12px; letter-spacing: .04em; }
.gallery-instagram { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 22px 25px; color: white; background: var(--navy); border-radius: 5px; }
.gallery-instagram > div { display: flex; align-items: center; gap: 15px; }
.gallery-instagram svg { width: 31px; height: 31px; color: #f3a7d4; }
.gallery-instagram span { display: flex; flex-direction: column; }
.gallery-instagram small { color: #9eafc2; font-size: 10px; }
.gallery-instagram strong { margin-top: 3px; font-size: 14px; }
.btn--instagram { color: white; background: linear-gradient(135deg, #7c3aed 0%, #db2777 48%, #f59e0b 100%); box-shadow: 0 12px 28px rgba(219,39,119,.18); }
.btn--instagram svg { width: 18px; height: 18px; }

.quality { overflow: hidden; color: white; background: var(--navy); }
.quality__grid { display: grid; grid-template-columns: .92fr 1fr; align-items: center; gap: 85px; }
.quality__visual { position: relative; min-height: 600px; display: grid; place-items: center; background: radial-gradient(circle, rgba(2,169,233,.12), transparent 58%), linear-gradient(135deg, #0c1d34, #030913); border: 1px solid rgba(255,255,255,.08); }
.quality__visual::before, .quality__visual::after { position: absolute; content: ""; border: 1px solid rgba(232,180,82,.15); border-radius: 50%; }
.quality__visual::before { width: 430px; height: 430px; }
.quality__visual::after { width: 520px; height: 520px; }
.quality__visual img { position: relative; z-index: 2; width: 75%; filter: drop-shadow(0 30px 60px rgba(0,0,0,.4)); }
.quality__seal { position: absolute; z-index: 3; right: -22px; bottom: 42px; width: 120px; height: 120px; display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--navy); background: linear-gradient(135deg, var(--gold-light), var(--gold)); border: 7px solid var(--navy); border-radius: 50%; }
.quality__seal strong { font-family: var(--serif); font-size: 38px; }
.quality__seal span { font-size: 10px; font-weight: 800; line-height: 1.3; text-transform: uppercase; }
.quality h2 { color: white; }
.quality .lead { margin: 25px 0 30px; color: #aebdce; font-size: 15px; line-height: 1.85; }
.feature-list { margin-bottom: 30px; }
.feature { display: flex; gap: 20px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.1); }
.feature > span { color: var(--gold); font-family: var(--serif); font-size: 17px; }
.feature h3 { margin: 0 0 5px; font-size: 15px; }
.feature p { margin: 0; color: #93a5b9; font-size: 12px; line-height: 1.6; }
.text-link { display: inline-flex; gap: 14px; color: var(--gold-light); font-size: 13px; font-weight: 800; }
.text-link span { transition: transform .25s; }
.text-link:hover span { transform: translateX(6px); }

.process { background: white; }
.section-heading--center { display: block; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.process-grid::before { position: absolute; top: 67px; right: 16%; left: 16%; height: 1px; content: ""; background: linear-gradient(90deg, var(--gold), var(--blue), var(--gold)); opacity: .4; }
.process-card { position: relative; padding: 44px 36px; text-align: center; background: var(--cream); border: 1px solid var(--border); }
.process-card:nth-child(2) { transition-delay: .1s; }
.process-card:nth-child(3) { transition-delay: .2s; }
.process-card__number { position: absolute; top: 16px; right: 19px; color: rgba(17,28,44,.11); font-family: var(--serif); font-size: 45px; }
.process-card__icon { position: relative; z-index: 2; width: 48px; height: 48px; display: grid; place-items: center; margin: 0 auto 23px; color: #9b6b1e; background: #fff; border: 1px solid rgba(180,129,47,.3); border-radius: 50%; box-shadow: 0 0 0 9px var(--cream); }
.process-card__icon svg { width: 22px; height: 22px; }
.process-card h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 22px; }
.process-card p { max-width: 280px; margin: auto; color: var(--muted); font-size: 13px; line-height: 1.7; }

.cta { padding: 82px 0; color: white; background: linear-gradient(110deg, rgba(7,16,31,.97), rgba(7,16,31,.76)), url("../images/hero-koltuk-yikama.png") center 62%/cover; }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta h2 { font-size: clamp(36px, 4vw, 52px); }
.cta p:not(.eyebrow) { margin: 14px 0 0; color: #bac7d5; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn--outline { color: white; border-color: rgba(255,255,255,.35); }
.footer { color: #9babbc; background: #030913; }
.footer__top { min-height: 170px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.brand--footer img { width: 55px; height: 55px; }
.footer__top > p { max-width: 380px; font-size: 13px; line-height: 1.7; }
.footer nav { display: flex; justify-content: flex-end; gap: 22px; color: #d5dee8; font-size: 12px; }
.footer__bottom { height: 64px; display: flex; align-items: center; justify-content: space-between; font-size: 11px; }
.footer__bottom a { color: var(--gold-light); font-weight: 800; }

.floating-contact { position: fixed; z-index: 50; right: 20px; bottom: 20px; display: flex; flex-direction: column; gap: 10px; }
.floating-contact a { width: 52px; height: 52px; display: grid; place-items: center; color: white; border-radius: 50%; box-shadow: 0 12px 25px rgba(0,0,0,.25); transition: transform .25s; }
.floating-contact a:hover { transform: translateY(-3px) scale(1.04); }
.floating-contact svg { width: 23px; height: 23px; }
.floating-contact__phone { background: var(--blue); }
.floating-contact__whatsapp { background: #25d366; }
.floating-contact__whatsapp svg { fill: currentColor; stroke: none; }
.floating-contact__instagram { background: linear-gradient(135deg, #7c3aed, #db2777 55%, #f59e0b); }

@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1); } }

@media (max-width: 1020px) {
    .menu-toggle { display: block; }
    .nav-links { position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 88vw); flex-direction: column; align-items: stretch; justify-content: center; gap: 4px; padding: 80px 34px; background: #07101f; box-shadow: -20px 0 50px rgba(0,0,0,.35); transform: translateX(105%); transition: transform .35s; }
    .nav-links.is-open { transform: none; }
    .nav-links > a:not(.nav-cta) { padding: 15px 0; font-size: 17px; }
    .nav-links > a:not(.nav-cta)::after { bottom: 7px; }
    .nav-cta { margin-top: 20px; text-align: center; }
    .menu-toggle { position: relative; z-index: 2; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .quality__grid { gap: 45px; }
}

@media (max-width: 760px) {
    .container { width: min(calc(100% - 30px), var(--container)); }
    .section { padding: 80px 0; }
    .topbar span { display: none; }
    .topbar__inner { justify-content: center; }
    .nav { height: 72px; }
    .brand img { width: 52px; height: 52px; }
    .brand strong { font-size: 19px; }
    .brand small { font-size: 7px; }
    .hero { min-height: 760px; height: 100svh; }
    .hero__image { background-position: 62% center; }
    .hero__overlay { background: linear-gradient(90deg, rgba(4,11,20,.98), rgba(4,11,20,.82)), linear-gradient(0deg, rgba(4,11,20,.8), transparent); }
    .hero__content { align-items: flex-end; padding: 150px 0 80px; }
    .hero h1 { font-size: clamp(44px, 14vw, 64px); }
    .hero__description { margin: 23px 0 28px; font-size: 15px; }
    .hero__actions .btn { width: 100%; }
    .hero__badges { gap: 12px; margin-top: 24px; }
    .scroll-hint { display: none; }
    .section-heading { display: block; margin-bottom: 38px; }
    .section-heading > p { margin-top: 23px; }
    .section-heading h2, .quality h2 { font-size: 42px; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card__visual { height: 260px; }
    .service-card p { min-height: auto; }
    .service-area { grid-template-columns: 1fr; padding: 27px 24px; }
    .service-area__icon { width: 50px; height: 50px; }
    .service-area .btn { width: 100%; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; gap: 12px; }
    .gallery-card, .gallery-card--1, .gallery-card--2 { grid-column: auto; grid-row: auto; height: 245px; }
    .gallery-instagram { align-items: stretch; flex-direction: column; }
    .gallery-instagram .btn { width: 100%; }
    .quality__grid { grid-template-columns: 1fr; }
    .quality__visual { min-height: 430px; }
    .quality__visual::before { width: 310px; height: 310px; }
    .quality__visual::after { width: 380px; height: 380px; }
    .quality__seal { right: 6px; bottom: 18px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-grid::before { display: none; }
    .cta__inner { display: block; }
    .cta__actions { margin-top: 28px; }
    .cta__actions .btn { width: 100%; }
    .footer__top { grid-template-columns: 1fr; gap: 22px; padding: 45px 0; }
    .footer nav { justify-content: flex-start; flex-wrap: wrap; }
    .footer__bottom { height: auto; flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px 0; }
    .floating-contact { right: 13px; bottom: 13px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
