/* ============================================================
   ORIS MEDYA — Klasik Açık Tema
   Krem / Altın / Bordo / Beyaz · Montserrat + Inter · yuvarlak köşeler
   ============================================================ */

:root {
    /* Açık yüzeyler */
    --cream: #f6f0e2;
    --cream-2: #fbf7ee;
    --white: #ffffff;

    /* Bordo */
    --bordo: #5c1a26;
    --bordo-700: #7a2433;
    --bordo-900: #3e0f18;

    /* Altın */
    --gold: #c0a062;
    --gold-bright: #d8be84;
    --gold-dim: #9a7c44;

    /* Metin */
    --ink: #241b1c;
    --ink-soft: #6b5e5a;
    --on-bordo: #f4e9da;

    /* Çizgi */
    --line: rgba(92, 26, 38, 0.14);
    --line-2: rgba(92, 26, 38, 0.22);
    --line-gold: rgba(192, 160, 98, 0.45);
    --line-light: rgba(246, 240, 226, 0.22);

    /* Tipografi */
    --font-display: "Montserrat", "Segoe UI", system-ui, sans-serif;
    --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

    --max: 1280px;
    --radius: 0.65rem;
    --radius-lg: 1.25rem;
    --shadow-sm: 0 6px 20px rgba(62, 15, 24, 0.07);
    --shadow: 0 20px 50px rgba(62, 15, 24, 0.14);
    --shadow-bordo: 0 24px 60px rgba(62, 15, 24, 0.3);
    --header-h: 88px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
    margin: 0; font-family: var(--font-body); color: var(--ink);
    background: var(--cream-2); line-height: 1.7; font-size: 16px;
    -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin: 0 0 .5em; color: var(--bordo); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.3rem; font-weight: 600; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 40px, var(--max)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--cream { background: var(--cream); }
.section--bordo { background: var(--bordo); position: relative; }
.section--bordo::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 60% at 80% 0%, rgba(192,160,98,.14), transparent 70%); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.lead { font-size: 1.15rem; color: var(--ink-soft); }
.text-gold { color: var(--gold-dim); }
.accent-bar { width: 64px; height: 3px; background: var(--gold); margin-top: 18px; border-radius: 2px; }
.section-head.center .accent-bar { margin-inline: auto; }

/* ====================== BUTONLAR ====================== */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: var(--radius); font-family: var(--font-body); font-weight: 600; font-size: .9rem; letter-spacing: .02em; cursor: pointer; border: 1.5px solid transparent; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease); white-space: nowrap; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--gold); color: var(--bordo-900); box-shadow: 0 10px 26px rgba(192,160,98,.32); }
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn-bordo { background: var(--bordo); color: var(--on-bordo); }
.btn-bordo:hover { background: var(--bordo-700); transform: translateY(-2px); }
.btn-outline { border-color: var(--line-2); color: var(--bordo); background: transparent; }
.btn-outline:hover { background: var(--bordo); color: var(--on-bordo); border-color: var(--bordo); }
.btn-light-outline { border-color: var(--line-light); color: var(--on-bordo); background: rgba(255,255,255,.06); }
.btn-light-outline:hover { background: var(--cream); color: var(--bordo); border-color: var(--cream); }

/* ====================== HEADER ====================== */
.site-header { position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 100; display: flex; align-items: center; background: transparent; border-bottom: 1px solid transparent; transition: background .35s var(--ease), height .35s var(--ease), border-color .35s var(--ease); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 62px; width: auto; transition: height .35s var(--ease); filter: drop-shadow(0 2px 8px rgba(0,0,0,.35)); }
.site-header.scrolled { background: rgba(251,247,238,.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); height: 70px; box-shadow: var(--shadow-sm); }
.site-header.scrolled .brand img { height: 48px; filter: none; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: rgba(244,233,218,.82); font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; position: relative; padding: 6px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: bottom right; transition: transform .3s var(--ease); }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: bottom left; }
.nav-links a.active { color: var(--gold-bright); }
.nav-links a.active::after { transform: scaleX(1); }
.site-header.scrolled .nav-links a { color: var(--ink-soft); }
.site-header.scrolled .nav-links a:hover, .site-header.scrolled .nav-links a.active { color: var(--bordo); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease); }
.site-header.scrolled .nav-toggle span { background: var(--bordo); }
.nav-toggle span + span { margin-top: 6px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ====================== HERO (görsel arka planlı) ====================== */
.hero {
    position: relative; min-height: 94vh; display: flex; align-items: center; justify-content: center;
    padding-top: var(--header-h); text-align: center; overflow: hidden;
    background:
        linear-gradient(180deg, rgba(40,9,16,.78) 0%, rgba(62,15,24,.6) 45%, rgba(40,9,16,.9) 100%),
        url("/img/hero.jpg") center/cover no-repeat;
    background-color: var(--bordo-900);
}
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(50% 45% at 50% 88%, rgba(192,160,98,.16), transparent 70%); }
.hero .container { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.hero-content { max-width: 880px; }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--gold-bright); }
.hero p { font-size: 1.18rem; color: rgba(244,233,218,.9); max-width: 620px; margin: 0 auto 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* Rozet pill */
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 9px 18px; margin-bottom: 26px; border-radius: 999px; background: rgba(246,240,226,.1); border: 1px solid var(--line-light); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-bright); }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(192,160,98,.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(192,160,98,.5); } 70% { box-shadow: 0 0 0 9px rgba(192,160,98,0); } 100% { box-shadow: 0 0 0 0 rgba(192,160,98,0); } }

/* ====================== İSTATİSTİK ====================== */
.stats { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 42px 24px; text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 22%; height: 56%; width: 1px; background: var(--line); }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--bordo); line-height: 1; }
.stat .label { font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-top: 10px; }

/* ====================== ÖZELLİK KARTLARI ====================== */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 28px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-gold); }
.feature .ico { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; background: var(--cream); color: var(--bordo); margin-bottom: 18px; }
.feature .ico svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 8px; color: var(--bordo); }
.feature p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ====================== HİZMET KARTLARI ====================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 30px; overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease); display: flex; flex-direction: column; }
.service-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.service-card:hover { border-color: var(--line-gold); transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .ico { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; background: var(--cream); color: var(--bordo); margin-bottom: 20px; transition: background .35s var(--ease), color .35s var(--ease); }
.service-card:hover .ico { background: var(--bordo); color: var(--gold-bright); }
.service-card .ico svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 10px; color: var(--bordo); }
.service-card p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.service-card .more { margin-top: 20px; font-weight: 600; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-dim); display: inline-flex; align-items: center; gap: 8px; }
.service-card .more svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.service-card:hover .more svg { transform: translateX(4px); }
/* Fotoğraf arka planlı kart */
.service-card.has-photo { background: linear-gradient(157deg, rgba(92,26,38,.40) 0%, rgba(40,9,16,.80) 100%), var(--card-photo) center/cover no-repeat; border-color: var(--line-gold); }
.service-card.has-photo h3 { color: var(--white); }
.service-card.has-photo p { color: rgba(244,233,218,.9); }
.service-card.has-photo .ico { background: rgba(255,255,255,.12); color: var(--gold-bright); }
.service-card.has-photo:hover .ico { background: var(--gold); color: var(--bordo-900); }
.service-card.has-photo .more { color: var(--gold-bright); }

/* ============ Anasayfa hizmet showcase (otomatik dönen) ============ */
.service-showcase { display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; align-items: start; }

/* Sol: öne çıkan panel — tüm paneller üst üste, sinematik çapraz geçiş */
.showcase-stage { display: grid; }
.showcase-feature { grid-area: 1 / 1; display: flex; flex-direction: column; width: 100%; padding: 40px; border-radius: var(--radius-lg); background: linear-gradient(150deg, var(--bordo), var(--bordo-900)); box-shadow: var(--shadow-bordo); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(16px) scale(.985); filter: blur(5px); transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease), visibility 0s linear .8s; }
.showcase-feature.is-active { opacity: 1; visibility: visible; pointer-events: auto; transform: none; filter: none; z-index: 1; transition: opacity .85s var(--ease), transform .85s var(--ease), filter .85s var(--ease), visibility 0s; }
.showcase-feature .ico { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 16px; background: rgba(255,255,255,.12); color: var(--gold-bright); margin-bottom: 20px; }
.showcase-feature .ico svg { width: 30px; height: 30px; }
.showcase-feature h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); color: var(--white); margin-bottom: 12px; }
.showcase-feature > p { color: rgba(244,233,218,.9); margin-bottom: 22px; }
.showcase-items { display: grid; gap: 11px; margin-bottom: 26px; }
.showcase-items li { display: flex; align-items: flex-start; gap: 11px; color: var(--on-bordo); font-size: .95rem; }
.showcase-items li svg { flex: none; width: 19px; height: 19px; color: var(--gold); margin-top: 3px; }
.showcase-feature .btn { align-self: flex-start; margin-top: auto; }

/* Sağ: hizmet listesi */
.showcase-list { display: flex; flex-direction: column; gap: 6px; max-height: 440px; overflow-y: auto; padding-right: 6px; }
.showcase-list::-webkit-scrollbar { width: 7px; }
.showcase-list::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }
.showcase-tab { position: relative; overflow: hidden; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; text-align: left; padding: 14px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink); font-family: var(--font-body); font-weight: 600; font-size: .95rem; cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.showcase-tab:hover { background: var(--cream); border-color: var(--line-gold); }
.showcase-tab .chev { width: 18px; height: 18px; flex: none; opacity: .5; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.showcase-tab.is-active { background: var(--bordo); color: var(--white); border-color: var(--bordo); }
.showcase-tab.is-active .chev { opacity: 1; transform: translateX(3px); color: var(--gold-bright); }
.showcase-tab.is-active::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); transform-origin: left; animation: showcaseProg 5s linear forwards; }
@keyframes showcaseProg { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ====================== SÜREÇ ====================== */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.process-step { position: relative; padding-top: 18px; }
.process-step .step-num { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--bordo-900); width: 48px; height: 48px; display: grid; place-items: center; background: var(--gold); border-radius: 50%; margin-bottom: 18px; }
.process-step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.process-step p { font-size: .9rem; margin: 0; }

/* ====================== HİZMET DETAY ====================== */
.service-details { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.service-detail { display: flex; flex-direction: column; gap: 24px; padding: 36px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); scroll-margin-top: calc(var(--header-h) + 20px); }
.service-detail__head .ico { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 16px; background: var(--cream); color: var(--bordo); margin-bottom: 20px; }
.service-detail__head .ico svg { width: 30px; height: 30px; }
.service-detail__head h2 { font-size: clamp(1.5rem, 2.2vw, 2rem); }
.service-detail__head p { color: var(--ink-soft); margin-bottom: 0; }
.service-detail__media { flex: 1; background: linear-gradient(150deg, var(--bordo), var(--bordo-900)); border-radius: var(--radius-lg); padding: 32px; position: relative; overflow: hidden; box-shadow: var(--shadow-bordo); }
.service-detail__media h4 { color: var(--gold-bright); font-family: var(--font-body); font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 22px; }
.service-detail .btn-bordo { align-self: flex-start; }
.check-list { display: grid; gap: 13px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--on-bordo); font-size: .96rem; }
.check-list li svg { flex: none; width: 20px; height: 20px; color: var(--gold); margin-top: 2px; }

/* ====================== CTA bandı ====================== */
.cta-band { text-align: center; }
.cta-band .inner { background: linear-gradient(150deg, var(--bordo) 0%, var(--bordo-900) 100%); border: 1px solid var(--line-gold); border-radius: var(--radius-lg); padding: clamp(44px, 6vw, 80px); position: relative; overflow: hidden; box-shadow: var(--shadow-bordo); }
.cta-band .inner::before { content: ""; position: absolute; left: 50%; top: -40%; transform: translateX(-50%); width: 540px; height: 540px; background: radial-gradient(circle, rgba(192,160,98,.18), transparent 65%); pointer-events: none; }
.cta-band h2 { color: var(--white); position: relative; }
.cta-band p { color: rgba(244,233,218,.88); max-width: 560px; margin: 0 auto 28px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ====================== PAGE HERO (bordo header) ====================== */
.page-hero { background: linear-gradient(150deg, var(--bordo) 0%, var(--bordo-900) 100%); padding: calc(var(--header-h) + 78px) 0 78px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 70% at 78% 0%, rgba(192,160,98,.16), transparent 70%); }
.page-hero h1 { color: var(--white); position: relative; }
.page-hero p { color: rgba(244,233,218,.88); max-width: 640px; margin: 12px auto 0; position: relative; }
.breadcrumb { font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(244,233,218,.65); margin-bottom: 16px; position: relative; }
.breadcrumb a:hover { color: var(--gold-bright); }

/* ====================== HAKKIMIZDA ====================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-visual { background: linear-gradient(150deg, var(--bordo), var(--bordo-900)); border-radius: var(--radius-lg); aspect-ratio: 4 / 3.4; display: grid; place-items: center; position: relative; overflow: hidden; box-shadow: var(--shadow-bordo); }
.about-visual img { width: 60%; opacity: .98; }
.about-visual::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(192,160,98,.16), transparent 60%); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-sm); transition: border-color .3s var(--ease), transform .3s var(--ease); }
.value-card:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.value-card .ico { color: var(--gold-dim); margin-bottom: 16px; }
.value-card .ico svg { width: 32px; height: 32px; }
.value-card h3 { font-size: 1.1rem; color: var(--bordo); }
.value-card p { color: var(--ink-soft); font-size: .94rem; margin: 0; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card { padding: 40px 36px; border: 1px solid var(--line-gold); border-radius: var(--radius-lg); background: linear-gradient(150deg, var(--bordo), var(--bordo-900)); position: relative; overflow: hidden; box-shadow: var(--shadow-bordo); }
.mv-card h3 { color: var(--gold-bright); }
.mv-card p { color: rgba(244,233,218,.9); margin: 0; }

/* ====================== İLETİŞİM ====================== */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 9px; color: var(--ink-soft); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius); font-family: var(--font-body); font-size: .96rem; color: var(--ink); background: var(--cream-2); transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease); }
.field input::placeholder, .field textarea::placeholder { color: #b3a59f; }
.field textarea { resize: vertical; min-height: 130px; }
.field select option { background: var(--white); color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(192,160,98,.18); }
.field .text-danger, .validation-summary-errors { color: #b3261e; font-size: .85rem; margin-top: 6px; display: block; }
.field input.input-validation-error, .field select.input-validation-error, .field textarea.input-validation-error { border-color: #b3261e; background: #fdf4f3; }
.alert { border-radius: var(--radius); padding: 16px 18px; margin-bottom: 24px; font-size: .95rem; display: flex; gap: 12px; align-items: flex-start; }
.alert svg { flex: none; width: 22px; height: 22px; margin-top: 1px; }
.alert-success { background: rgba(192,160,98,.12); border: 1px solid var(--line-gold); color: var(--bordo); }
.info-stack { display: grid; gap: 16px; }
.info-card { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px 22px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s var(--ease); }
.info-card:hover { transform: translateY(-4px); border-color: var(--line-gold); }
.info-card .ico { flex: none; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 12px; background: var(--cream); color: var(--bordo); }
.info-card .ico svg { width: 24px; height: 24px; }
.info-card .label { font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.info-card .value { font-weight: 600; color: var(--bordo); }

/* ====================== FOOTER ====================== */
.site-footer { background: var(--bordo-900); color: rgba(244,233,218,.72); padding: 78px 0 0; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand img { height: 100px; margin-bottom: 18px; }
.footer-brand p { font-size: .95rem; max-width: 340px; color: rgba(244,233,218,.7); }
.footer-col h4 { color: var(--gold-bright); font-family: var(--font-body); font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: .95rem; color: rgba(244,233,218,.72); }
.footer-col a:hover { color: var(--gold-bright); }
.social-row { display: flex; gap: 12px; margin-top: 6px; }
.social-row a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line-light); border-radius: 50%; color: var(--gold-bright); transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.social-row a:hover { background: var(--gold); color: var(--bordo-900); transform: translateY(-3px); }
.social-row svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid var(--line-light); padding: 22px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: .82rem; color: rgba(244,233,218,.6); }

/* ====================== WhatsApp FAB ====================== */
.wa-fab { position: fixed; right: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.4); z-index: 90; transition: transform .3s var(--ease); }
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 30px; height: 30px; color: #fff; }

/* ====================== KOYU (BORDO) BÖLÜM OVERRIDE'LARI ====================== */
.section--bordo h1, .section--bordo h2, .section--bordo h3, .section--bordo h4 { color: var(--white); }
.section--bordo .eyebrow { color: var(--gold-bright); }
.section--bordo .eyebrow::before { background: var(--gold-bright); }
.section--bordo .section-head p, .section--bordo p, .section--bordo .lead { color: rgba(244,233,218,.85); }
.section--bordo .process-step .step-num { background: var(--gold); color: var(--bordo-900); }

/* ====================== PAGE HERO — kolaj görseli (Hizmetler) ====================== */
.page-hero--image { min-height: 60vh; display: flex; align-items: center; background: linear-gradient(157deg, rgba(60,15,24,.5) 0%, rgba(30,7,12,.74) 100%), var(--hero-img) center/cover no-repeat; }
.page-hero--image::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to bottom, rgba(246,240,226,0) 70%, rgba(246,240,226,.55) 90%, #f6f0e2 100%); }
.page-hero--image .container { position: relative; z-index: 2; }
.page-hero--image h1 { text-shadow: 0 2px 26px rgba(0,0,0,.6), 0 0 10px rgba(0,0,0,.45); }
.page-hero--image .breadcrumb, .page-hero--image p { text-shadow: 0 1px 14px rgba(0,0,0,.6); }

/* ====================== GALAKSİ — Hakkımızda başlık bandı arkasında yıldız alanı ====================== */
.globe-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.page-hero--globe { min-height: 60vh; display: flex; align-items: center; background: radial-gradient(120% 110% at 50% 30%, #2a0e16 0%, #14080c 55%, #0b0507 100%); }
.page-hero--globe::before { background: radial-gradient(58% 70% at 78% 4%, rgba(233,195,73,.12), transparent 70%); z-index: 1; }
.page-hero--globe::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to bottom, rgba(251,247,238,0) 80%, rgba(251,247,238,.22) 91%, rgba(251,247,238,.65) 97%, #fbf7ee 100%), radial-gradient(78% 82% at 50% 50%, transparent 44%, rgba(11,5,7,.36) 76%, rgba(11,5,7,.72) 100%); }
.page-hero--globe .container { position: relative; z-index: 2; }
.page-hero--globe h1 { text-shadow: 0 2px 26px rgba(0,0,0,.6), 0 0 8px rgba(0,0,0,.4); }
.page-hero--globe .breadcrumb, .page-hero--globe p { text-shadow: 0 1px 14px rgba(0,0,0,.55); }
@media (prefers-reduced-motion: reduce) { .globe-bg { display: none; } }

/* ====================== Scroll-reveal ====================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } .showcase-feature { transition: none; filter: none; transform: none; } .showcase-tab.is-active::after { animation: none; opacity: 0; } }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .stats .grid { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(3)::before, .stat:nth-child(2)::before { content: none; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-grid, .mv-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
    .service-details { grid-template-columns: 1fr; }
    .service-showcase { grid-template-columns: 1fr; }
    .showcase-stage { min-height: 0; }
    .showcase-list { max-height: 320px; }
    .nav-toggle { display: block; }
    .nav { position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; background: rgba(251,247,238,.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 0 24px; max-height: 0; overflow: hidden; gap: 0; box-shadow: var(--shadow); transition: max-height .4s var(--ease), padding .4s var(--ease); }
    .nav-open .nav { max-height: 82vh; padding: 18px 24px 28px; }
    .nav-links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
    .nav-links a { padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
    .nav-links a::after { display: none; }
    .nav .btn { width: 100%; justify-content: center; margin-top: 16px; }
}
@media (max-width: 560px) {
    .services-grid, .feature-grid, .stats .grid, .process-grid, .values-grid, .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}
