/* =====================================================
   ÖLÇER HARİTA İMAR - Technical Precision Design System
   Stitch Tasarımına Uyarlanmış Ana Stil Dosyası
   ===================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Material Symbols ── */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

/* ── CSS Değişkenleri ── */
:root {
    /* Surface & Background Colors */
    --background: #0A0A0A;
    --surface: #15140b;
    --surface-dim: #15140b;
    --surface-bright: #3b392f;
    --surface-container-lowest: #100e07;
    --surface-container-low: #1d1c13;
    --surface-container: #212017;
    --surface-container-high: #2c2a20;
    --surface-container-highest: #37352b;

    /* Text Colors */
    --on-surface: #e7e2d3;
    --on-surface-variant: #ccc7af;
    --inverse-surface: #e7e2d3;
    --inverse-on-surface: #323127;

    /* Primary Colors */
    --primary: #dbcb44;
    --on-primary: #363100;
    --primary-container: #beaf29;
    --on-primary-container: #484200;
    --inverse-primary: #695f00;
    --primary-fixed: #f6e55c;
    --primary-fixed-dim: #d9c942;

    /* Secondary Colors */
    --secondary: #c6c6c6;
    --on-secondary: #303030;
    --secondary-container: #474747;

    /* Outline */
    --outline: #95917c;
    --outline-variant: #4a4735;

    /* Error */
    --error: #ffb4ab;
    --on-error: #690005;
    --error-container: #93000a;

    /* Typography */
    --font-display: 'Montserrat', sans-serif;
    --font-headline: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-technical: 'JetBrains Mono', monospace;

    /* Spacing */
    --container-max: 1440px;
    --gutter: 32px;
    --margin-desktop: 80px;
    --margin-mobile: 20px;
    --stack-sm: 8px;
    --stack-md: 24px;
    --stack-lg: 64px;

    /* Rounded */
    --radius-sm: 0.125rem;
    --radius-default: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-xslow: 0.7s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--on-surface);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

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

ul, ol { list-style: none; }

/* ── Material Symbols ── */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

.material-filled {
    font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* ── Container ── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--margin-desktop);
}

/* ── Typography Classes ── */
.font-display {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.font-headline-lg {
    font-family: var(--font-headline);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.17;
    letter-spacing: -0.01em;
}

.font-headline-md {
    font-family: var(--font-headline);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.25;
}

.font-body-lg {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.56;
}

.font-body-md {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.font-label-caps {
    font-family: var(--font-technical);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.font-technical {
    font-family: var(--font-technical);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43;
}

/* ── Glass Card ── */
.glass-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.glass-card:hover {
    border-color: var(--primary-container);
    box-shadow: 0 0 20px rgba(190, 175, 41, 0.1);
}

/* ── Text Glow ── */
.text-glow {
    text-shadow: 0 0 15px rgba(219, 203, 68, 0.3);
}

/* ── Survey Line ── */
.survey-line {
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(74, 71, 53, 0.2);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px var(--margin-desktop);
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 24px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

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

@media (min-width: 1025px) {
    .nav-links {
        display: contents;
    }
}

.nav-links a {
    font-family: var(--font-headline);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    transition: all var(--transition-base);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.nav-links a:hover {
    border-bottom-color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
}


.nav-cta-btn {
    background: var(--primary-container);
    color: #000000 !important;
    padding: 8px 24px;
    font-family: var(--font-technical);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-default);
    border: none;
    cursor: pointer;
    transition: transform var(--transition-fast);
    display: inline-block;
    white-space: nowrap;
}

.nav-cta-btn:hover {
    transform: scale(1.05);
    color: #000000 !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 51;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

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

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

.hero-bg .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--background), rgba(10, 10, 10, 0.4), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 768px;
    padding: 0 var(--margin-desktop);
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.hero-content-inner {
    max-width: 960px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: rgba(219, 203, 68, 0.1);
    border: 1px solid rgba(219, 203, 68, 0.2);
    margin-bottom: 24px;
}

.hero-badge .material-symbols-outlined {
    font-size: 14px;
    color: var(--primary);
    font-variation-settings: 'FILL' 1;
}

.hero-badge span:last-child {
    font-family: var(--font-technical);
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hero-title {
    font-family: var(--font-headline);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

.hero-title .highlight {
    color: var(--primary);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-title .highlight {
        white-space: normal;
    }
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 19px;
    color: var(--on-surface-variant);
    margin-bottom: 48px;
    max-width: 700px;
    line-height: 1.75;
    text-wrap: pretty;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-bottom-line {
    position: absolute;
    bottom: 40px;
    left: var(--margin-desktop);
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0.5;
    z-index: 10;
}

.hero-bottom-line .line {
    width: 80px;
    height: 1px;
    background: var(--outline);
}

.hero-bottom-line span {
    font-family: var(--font-technical);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--on-surface-variant);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    font-family: var(--font-technical);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    border-radius: var(--radius-default);
}

.btn-primary {
    background: var(--primary);
    color: var(--background);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(219, 203, 68, 0.2);
    color: var(--background);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(219, 203, 68, 0.4);
}

.btn-outline:hover {
    background: rgba(219, 203, 68, 0.05);
    color: var(--primary);
}

.btn .material-symbols-outlined {
    font-size: 14px;
}

/* =====================================================
   SECTION COMMON
   ===================================================== */
.section {
    padding: var(--stack-lg) 0;
}

.section-label {
    font-family: var(--font-technical);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: var(--font-headline);
    font-size: clamp(24px, 2.5vw, 38px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--on-surface);
}

/* =====================================================
   KURUMSAL (About) SECTION
   ===================================================== */
.section-kurumsal {
    background: var(--surface-container-lowest);
}

.kurumsal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gutter);
    align-items: center;
}

.kurumsal-image {
    position: relative;
}

.kurumsal-image-corner {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 128px;
    height: 128px;
    border-top: 2px solid rgba(190, 175, 41, 0.4);
    border-left: 2px solid rgba(190, 175, 41, 0.4);
    opacity: 0.5;
}

.kurumsal-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    filter: grayscale(100%);
    transition: filter 0.7s ease;
}

.kurumsal-image:hover img {
    filter: grayscale(0%);
}

.kurumsal-floating-card {
    position: absolute;
    bottom: -40px;
    right: -40px;
    max-width: 280px;
    padding: 32px;
}

.kurumsal-floating-card .stat-big {
    font-family: var(--font-technical);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.kurumsal-floating-card p {
    color: var(--on-surface-variant);
    font-size: 14px;
    line-height: 1.5;
}

.kurumsal-content {
    padding-left: 64px;
}

.kurumsal-content h3 {
    font-family: var(--font-headline);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 32px;
}

.kurumsal-content p {
    color: var(--on-surface-variant);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.kurumsal-stats {
    display: flex;
    gap: 48px;
    border-top: 1px solid rgba(74, 71, 53, 0.3);
    padding-top: 32px;
    margin-top: 48px;
}

.kurumsal-stat span:first-child {
    display: block;
    font-family: var(--font-technical);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.kurumsal-stat span:last-child {
    font-family: var(--font-technical);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--outline);
}

/* =====================================================
   HİZMETLER (Services) SECTION
   ===================================================== */
.section-hizmetler {
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.hizmetler-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    gap: 32px;
}

.hizmetler-header .section-title {
    max-width: none;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .hizmetler-header .section-title {
        white-space: normal;
    }
}

.hizmetler-header .survey-line {
    flex: 1;
    height: 1px;
    max-width: 400px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 320px;
    border-radius: var(--radius-lg);
    border: 1.5px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-base), border-color 0s, box-shadow var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(219, 203, 68, 0.5);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(219, 203, 68, 0.05);
}

.service-card .service-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-technical);
    font-size: 36px;
    color: rgba(219, 203, 68, 0.08);
    transition: opacity var(--transition-base);
}

.service-card:hover .service-number {
    opacity: 1;
    color: rgba(219, 203, 68, 0.2);
}

.service-card .material-symbols-outlined {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 24px;
}

.service-card h4 {
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--on-surface);
}

.service-card p {
    font-size: 13px;
    color: var(--on-surface-variant);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =====================================================
   NEDEN BİZ (Why Choose Us)
   ===================================================== */
.section-neden-biz {
    background: var(--surface-container-low);
    border-top: 1px solid rgba(74, 71, 53, 0.2);
    border-bottom: 1px solid rgba(74, 71, 53, 0.2);
}

.neden-biz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.neden-biz-item {
    text-align: center;
}

.neden-biz-item .icon-wrap {
    display: inline-flex;
    padding: 16px;
    border-radius: 50%;
    background: rgba(219, 203, 68, 0.05);
    border: 1px solid rgba(219, 203, 68, 0.1);
    margin-bottom: 24px;
}

.neden-biz-item .icon-wrap .material-symbols-outlined {
    font-size: 28px;
    color: var(--primary);
    font-variation-settings: 'FILL' 1;
}

.neden-biz-item h4 {
    font-family: var(--font-technical);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.neden-biz-item p {
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.5;
}

/* =====================================================
   PROJELER (Gallery) SECTION
   ===================================================== */
.section-projeler {
    background: var(--background);
}

.projects-title-link:hover .arrow-icon {
    transform: translateX(6px);
}

.projeler-header {
    margin-bottom: 64px;
}

.projeler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.projeler-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.projeler-col:nth-child(2) {
    /* staggered effect - masonry style */
}

.proje-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.proje-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.proje-item:hover img {
    transform: scale(1.1);
}

.proje-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.proje-item:hover .proje-overlay {
    opacity: 0.8;
}

.proje-overlay span {
    font-family: var(--font-technical);
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* =====================================================
   SÜREÇ (Process / Timeline) SECTION
   ===================================================== */
.section-surec {
    background: var(--surface-container-lowest);
}

.surec-header {
    text-align: center;
    margin-bottom: 80px;
}

.surec-wrapper {
    position: relative;
}

.surec-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(74, 71, 53, 0.3);
}

.surec-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.surec-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.surec-step .step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--background);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition-base);
}

.surec-step:hover .step-circle {
    background: var(--primary);
}

.surec-step .step-circle span {
    font-family: var(--font-technical);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    transition: color var(--transition-base);
}

.surec-step:hover .step-circle span {
    color: var(--background);
}

.surec-step h4 {
    font-family: var(--font-headline);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--on-surface);
}

.surec-step p {
    font-size: 12px;
    color: var(--on-surface-variant);
    padding: 0 16px;
    line-height: 1.5;
}

/* =====================================================
   İLETİŞİM (Contact) SECTION
   ===================================================== */
.section-iletisim {
    background: var(--background);
}

.iletisim-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--surface-container-low);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(74, 71, 53, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.iletisim-map-side {
    position: relative;
    min-height: 400px;
}

.iletisim-map-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.6;
}

.iletisim-map-side .map-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background), transparent);
}

.iletisim-map-side .address-card {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    padding: 24px;
    border: 1px solid rgba(190, 175, 41, 0.2);
}

.iletisim-map-side .address-card h4 {
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.iletisim-map-side .address-card h4 .material-symbols-outlined {
    color: var(--primary);
}

.iletisim-map-side .address-card p {
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.6;
}

.iletisim-form-side {
    padding: 48px 64px;
}

.iletisim-form-side h3 {
    font-family: var(--font-headline);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font-technical);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--outline);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--surface-container-lowest);
    border: 1px solid rgba(74, 71, 53, 0.3);
    color: var(--on-surface);
    padding: 16px;
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
    border-radius: var(--radius-default);
    transition: all var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--outline);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(219, 203, 68, 0.1);
}

.form-group textarea {
    resize: none;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-wrapper {
    position: relative;
}

.select-wrapper .material-symbols-outlined {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    pointer-events: none;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--background);
    font-family: var(--font-technical);
    font-size: 14px;
    font-weight: 700;
    padding: 20px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: none;
    border-radius: var(--radius-default);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(190, 175, 41, 0.15);
}

.btn-submit:hover {
    background: var(--primary-container);
    transform: scale(1.01);
}

/* ── Alert Messages ── */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-default);
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(190, 175, 41, 0.1);
    border: 1px solid rgba(190, 175, 41, 0.3);
    color: var(--primary);
}

.alert-error {
    background: rgba(255, 180, 171, 0.1);
    border: 1px solid rgba(255, 180, 171, 0.3);
    color: var(--error);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--surface-container-lowest);
    border-top: 1px solid rgba(74, 71, 53, 0.3);
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: var(--gutter);
}

.footer-about .logo-text {
    font-size: 24px;
    margin-bottom: 16px;
    display: block;
}

.footer-brand-text {
    display: inline-block;
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(74, 71, 53, 0.3);
    color: var(--on-surface-variant);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.footer-social a .material-symbols-outlined {
    font-size: 16px;
}

.footer-col h5 {
    font-family: var(--font-technical);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--on-surface);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(219, 203, 68, 0.2);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--on-surface-variant);
    transition: color var(--transition-base);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-contact-item .material-symbols-outlined {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(74, 71, 53, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--on-surface-variant);
}

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

.footer-bottom-links a {
    font-size: 12px;
    color: var(--on-surface-variant);
    transition: color var(--transition-base);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.developer-link {
    transition: text-decoration 0.2s ease-in-out;
}
.developer-link:hover {
    text-decoration: underline !important;
}

/* =====================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =====================================================
   MOBILE OVERLAY
   ===================================================== */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 49;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 1024px) {
    :root {
        --margin-desktop: 20px;
    }

    .navbar-inner {
        gap: 12px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .nav-links a {
        font-size: 13px;
        letter-spacing: 0.05em;
    }

    .nav-cta-btn {
        padding: 6px 16px;
        font-size: 13px;
    }

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

    .kurumsal-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .kurumsal-content {
        padding-left: 0;
    }

    .kurumsal-floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        margin-top: 24px;
    }

    .iletisim-card {
        grid-template-columns: 1fr;
    }

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

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

    .surec-line { display: none; }

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

    .projeler-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --margin-desktop: var(--margin-mobile);
    }

    .navbar-inner {
        padding: 16px var(--margin-mobile);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(16, 14, 7, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 16px;
        padding: 32px;
        transition: right var(--transition-base);
        border-left: 1px solid var(--outline-variant);
        z-index: 50;
    }

    .nav-links.active { right: 0; }

    .nav-links a {
        width: 100%;
        padding: 14px 0;
        font-size: 16px;
    }

    .nav-cta-btn {
        width: 100%;
        text-align: center;
        margin-top: 16px;
    }

    .menu-toggle { display: flex; }

    .hero-content {
        padding: 0 var(--margin-mobile);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        justify-content: center;
        text-align: center;
    }

    .hero-bottom-line { display: none; }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card { height: auto; min-height: 240px; }

    .neden-biz-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .projeler-grid {
        grid-template-columns: 1fr;
    }

    .surec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hizmetler-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hizmetler-header .survey-line { display: none; }

    .iletisim-form-side {
        padding: 32px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom-links {
        gap: 16px;
    }

    .kurumsal-image-corner { display: none; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .surec-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 425px) {
    .hero-title {
        font-size: 22px;
    }

    .hero-desc {
        font-size: 14px;
        margin-bottom: 32px;
    }
}

/* =====================================================
   İFRAZ VE TEVHİT HİZMET DETAY SAYFASI
   ===================================================== */

/* ── Service Hero ── */
.service-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.service-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: grayscale(20%);
}

.service-hero-bg .overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--background) 0%, rgba(21, 20, 11, 0.4) 60%, transparent 100%);
}

.service-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.service-hero-inner {
    max-width: 640px;
}

/* ── Geri Butonu (Navbar İçi - Sadece Ok) ── */
.back-btn {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(219, 203, 68, 0.08);
    border: 1px solid rgba(219, 203, 68, 0.3);
    border-radius: 50%;
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.back-btn:hover {
    background: rgba(219, 203, 68, 0.18);
    border-color: rgba(219, 203, 68, 0.65);
    transform: translateY(-50%) translateX(-3px);
}

.back-btn .back-arrow {
    font-size: 18px;
    line-height: 1;
}

/* Medium Viewports için geri butonu konumlandırması ve logo kaydırması */
@media (max-width: 1024px) {
    .navbar-inner.has-back-btn {
        padding-left: 72px !important;
    }
    .back-btn {
        left: 24px;
    }
}

/* Mobile Viewports için geri butonu konumlandırması ve logo kaydırması */
@media (max-width: 768px) {
    .navbar-inner.has-back-btn {
        padding-left: 68px !important;
    }
    .back-btn {
        left: 16px;
    }
}

.service-hero-title {
    font-family: var(--font-headline);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
}

.service-hero-title .highlight {
    color: var(--primary-container);
}

.service-hero-desc {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--on-surface-variant);
    margin-bottom: 40px;
    line-height: 1.6;
}

.tech-overlay {
    position: absolute;
    bottom: 48px;
    right: var(--margin-desktop);
    z-index: 10;
}

.tech-overlay-card {
    padding: 24px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: var(--radius-lg);
}

.tech-overlay-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tech-overlay-row span:first-child {
    font-family: var(--font-technical);
    font-size: 14px;
    color: var(--on-surface-variant);
}

.tech-overlay-row span:last-child {
    font-family: var(--font-technical);
    font-size: 14px;
    color: var(--primary);
}

/* Scan Animation */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(219, 203, 68, 0.3);
    filter: blur(2px);
    animation: scan 4s linear infinite;
}

@keyframes scan {
    0% { top: 0; opacity: 0; }
    50% { opacity: 0.5; }
    100% { top: 100%; opacity: 0; }
}

/* ── Bento Layout ── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gutter);
    margin-bottom: 128px;
}

.bento-header {
    grid-column: span 12;
    margin-bottom: 48px;
}

.bento-card-8 {
    grid-column: span 8;
    padding: 48px;
    border-radius: var(--radius-lg);
}

.bento-card-4 {
    grid-column: span 4;
    padding: 48px;
    border-left-width: 4px;
    border-left-style: solid;
    border-left-color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card-8 h3, .bento-card-4 h3 {
    font-family: var(--font-headline);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    margin-bottom: 24px;
}

.bento-card-8 p, .bento-card-4 p {
    color: var(--on-surface-variant);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Checklists */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.check-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-item .material-symbols-outlined {
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
}

.check-item h5 {
    font-family: var(--font-headline);
    font-size: 14px;
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.check-item p {
    font-size: 12px;
    color: var(--on-surface-variant);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Tag list for Tevhit */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}

.tag-badge {
    background: rgba(219, 203, 68, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    font-family: var(--font-technical);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

/* ── Detailed Workflow ── */
.workflow-section {
    position: relative;
    margin-bottom: 128px;
}

.workflow-title-block {
    text-align: center;
    margin-bottom: 80px;
}

.workflow-title-block h2 {
    font-family: var(--font-headline);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 600;
    margin-bottom: 16px;
}

.workflow-title-block p {
    color: var(--on-surface-variant);
    font-size: 16px;
}

.workflow-cards-row {
    position: relative;
    display: flex;
    gap: var(--gutter);
}

.workflow-line-desktop {
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.workflow-card-step {
    position: relative;
    z-index: 10;
    flex: 1;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: rgba(26, 26, 26, 0.6);
}

.workflow-card-step:hover {
    border-color: var(--primary);
}

.workflow-card-step-num {
    width: 48px;
    height: 48px;
    background: var(--background);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition-base);
}

.workflow-card-step-num span {
    font-family: var(--font-technical);
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    transition: color var(--transition-base);
}

.workflow-card-step:hover .workflow-card-step-num {
    background: var(--primary);
}

.workflow-card-step:hover .workflow-card-step-num span {
    color: var(--background);
}

.workflow-card-step h4 {
    font-family: var(--font-technical);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.workflow-card-step p {
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.6;
}

/* ── CTA Banner ── */
.cta-banner-card {
    position: relative;
    padding: 64px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.cta-banner-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    height: 100%;
}

.cta-grid-col-border {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-banner-content {
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.cta-banner-content h2 {
    font-family: var(--font-headline);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.25;
}

.cta-banner-content p {
    color: var(--on-surface-variant);
    font-size: 16px;
    line-height: 1.5;
}

.cta-banner-action {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 48px;
    background: var(--primary);
    color: var(--background);
    font-family: var(--font-technical);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.cta-banner-btn:hover {
    background: var(--primary-container);
    color: var(--background);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(219, 203, 68, 0.2);
}

.cta-banner-btn .material-symbols-outlined {
    font-size: 18px;
    transition: transform var(--transition-fast);
}

.cta-banner-btn:hover .material-symbols-outlined {
    transform: translateX(4px);
}

/* ── Responsive rules ── */
@media (max-width: 1024px) {
    .bento-card-8 {
        grid-column: span 12;
    }
    
    .bento-card-4 {
        grid-column: span 12;
        border-left-width: 0;
        border-top-width: 4px;
        border-top-style: solid;
        border-top-color: var(--primary);
    }
    
    .workflow-cards-row {
        flex-direction: column;
        gap: 32px;
    }
    
    .workflow-line-desktop {
        display: none;
    }
    
    .cta-banner-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 48px 32px;
    }
    
    .cta-banner-action {
        width: 100%;
    }
    
    .cta-banner-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .service-hero {
        height: auto;
        padding-top: 120px;
        padding-bottom: 64px;
    }
    
    .tech-overlay {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 40px;
        width: 100%;
    }
    
    .tech-overlay-card {
        min-width: 100%;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   CİNS DEĞİŞİKLİĞİ HİZMET DETAY SAYFASI
   ===================================================== */

/* ── Cins Layout Grid ── */
.cins-layout-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gutter);
    margin-bottom: 96px;
}

.cins-left-content {
    grid-column: span 7;
}

.cins-right-sidebar {
    grid-column: span 5;
}

.cins-left-content h2 {
    font-family: var(--font-headline);
    margin-bottom: 32px;
}

/* Feature cards border colors */
.border-l-primary {
    border-left: 4px solid var(--primary) !important;
}

.border-l-primary-dim {
    border-left: 4px solid rgba(219, 203, 68, 0.3) !important;
}

/* ── Sidebar Card ── */
.sidebar-card {
    background: var(--surface-container);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--outline-variant);
    position: sticky;
    top: 120px;
}

.sidebar-card h3 {
    font-family: var(--font-headline);
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-card h3 .material-symbols-outlined {
    font-size: 28px;
}

.sidebar-card-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.sidebar-card-item .material-symbols-outlined {
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
}

.sidebar-card-item h5 {
    font-family: var(--font-headline);
    font-size: 16px;
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: 4px;
}

.sidebar-card-item p {
    font-size: 13px;
    color: var(--on-surface-variant);
    line-height: 1.5;
    margin-bottom: 0;
}

.sidebar-cta-divider {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--outline-variant);
}

.sidebar-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 16px;
    font-family: var(--font-technical);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.sidebar-cta-btn:hover {
    background: var(--primary);
    color: var(--background);
}

.sidebar-cta-btn .material-symbols-outlined {
    font-size: 20px;
}

/* ── Timeline Section (4 Steps) ── */
.timeline-step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    position: relative;
}

.timeline-connector-line {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.timeline-step-card {
    position: relative;
    z-index: 10;
}

.timeline-step-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-technical);
    font-weight: 700;
    margin-bottom: 24px;
    transition: all var(--transition-base);
}

.timeline-step-badge.badge-filled {
    background: var(--primary);
    color: var(--background);
}

.timeline-step-badge.badge-outlined {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: var(--background);
    transition: all var(--transition-base);
}

.timeline-step-card:hover .timeline-step-badge.badge-outlined {
    background: var(--primary);
    color: var(--background);
}

.timeline-step-card h4 {
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.timeline-step-card p {
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.6;
}

/* ── Technical Highlights Banner ── */
.highlight-banner {
    display: flex;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 96px;
}

.highlight-banner-left {
    width: 33.333%;
    background: var(--primary);
    color: var(--background);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.highlight-banner-left h3 {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.highlight-banner-left p {
    font-family: var(--font-technical);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
}

.highlight-banner-left .quote {
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
}

.highlight-banner-right {
    width: 66.666%;
    background: var(--surface-container-highest);
    padding: 48px;
}

.highlight-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.highlight-stat-item p:first-child {
    font-family: var(--font-technical);
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
}

.highlight-stat-item p:last-child {
    font-family: var(--font-headline);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
}

.highlight-tech-list {
    margin-top: 16px;
}

.highlight-tech-list p {
    font-family: var(--font-technical);
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 16px;
}

.tech-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-badge-outlined {
    padding: 8px 16px;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--on-surface-variant);
    font-family: var(--font-technical);
    font-size: 12px;
    border-radius: 50px;
    transition: all var(--transition-base);
}

.tech-badge-outlined:hover {
    border-color: var(--primary);
    color: var(--on-surface);
}

/* ── Cins Responsive rules ── */
@media (max-width: 1024px) {
    .cins-left-content {
        grid-column: span 12;
    }
    
    .cins-right-sidebar {
        grid-column: span 12;
    }
    
    .sidebar-card {
        position: relative;
        top: auto;
        margin-top: 48px;
    }
    
    .timeline-step-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .timeline-connector-line {
        display: none;
    }
    
    .highlight-banner {
        flex-direction: column;
    }
    
    .highlight-banner-left {
        width: 100%;
        gap: 32px;
    }
    
    .highlight-banner-right {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .timeline-step-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   PARSELASYON VE İMAR UYGULAMALARI HİZMET DETAYI
   ===================================================== */

/* ── Layout Grid ── */
.parsel-layout-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gutter);
    margin-bottom: 96px;
}

.parsel-left-content {
    grid-column: span 8;
}

.parsel-right-sidebar {
    grid-column: span 4;
}

/* ── Vertical Timeline inside Sidebar ── */
.vertical-timeline-container {
    position: relative;
    padding-left: 16px;
}

.vertical-timeline-line {
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, var(--primary) 0%, rgba(219, 203, 68, 0) 100%);
}

.vertical-timeline-item {
    position: relative;
    padding-left: 40px;
    padding-bottom: 32px;
}

.vertical-timeline-item:last-child {
    padding-bottom: 0;
}

.vertical-timeline-badge {
    position: absolute;
    left: 0;
    top: 2px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--surface-container-high);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.vertical-timeline-badge span {
    font-family: var(--font-technical);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
}

.vertical-timeline-item h4 {
    font-family: var(--font-headline);
    font-size: 16px;
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: 8px;
}

.vertical-timeline-item p {
    font-size: 13px;
    color: var(--on-surface-variant);
    line-height: 1.5;
}

/* ── Staggered Showcase Section ── */
.showcase-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gutter);
    margin-top: 64px;
}

.showcase-card-item {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-slow);
}

.showcase-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.showcase-card-item:hover img {
    transform: scale(1.1);
}

.showcase-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    z-index: 10;
}

.showcase-card-overlay .tag-badge {
    margin-bottom: 12px;
    align-self: flex-start;
}

.showcase-card-overlay h4 {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 700;
    color: var(--on-surface);
}

/* ── Staggered effect on desktop ── */
@media (min-width: 1025px) {
    .staggered-col {
        transform: translateY(48px);
    }
    
    .showcase-grid-row {
        margin-bottom: 48px; /* Offset the translation below */
    }
}

/* ── Primary CTA Banner ── */
.primary-cta-banner {
    background: var(--primary);
    padding: 80px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    margin-bottom: 96px;
}

.primary-cta-banner-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
    background-image: radial-gradient(var(--background) 1px, transparent 1px);
    background-size: 20px 20px;
}

.primary-cta-banner-content {
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.primary-cta-banner-content h2 {
    font-family: var(--font-headline);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--on-primary-container);
    margin-bottom: 24px;
    line-height: 1.15;
}

.primary-cta-banner-content p {
    color: rgba(32, 28, 0, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.primary-cta-banner-actions {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
}

.btn-primary-cta-filled {
    background: var(--on-primary-fixed);
    color: var(--primary-fixed);
    padding: 16px 32px;
    font-family: var(--font-technical);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-base);
}

.btn-primary-cta-filled:hover {
    background: rgba(32, 28, 0, 0.9);
    transform: translateY(-2px);
}

.btn-primary-cta-outline {
    background: transparent;
    border: 2px solid var(--on-primary-fixed);
    color: var(--on-primary-fixed);
    padding: 16px 32px;
    font-family: var(--font-technical);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-base);
}

.btn-primary-cta-outline:hover {
    background: rgba(32, 28, 0, 0.1);
}

/* ── Parselasyon Responsive Rules ── */
@media (max-width: 1024px) {
    .parsel-left-content {
        grid-column: span 12;
    }
    
    .parsel-right-sidebar {
        grid-column: span 12;
    }
    
    .showcase-grid-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .staggered-col {
        transform: none;
    }
    
    .primary-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 48px;
    }
    
    .primary-cta-banner-actions {
        width: 100%;
    }
    
    .btn-primary-cta-filled,
    .btn-primary-cta-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .showcase-grid-row {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   APLİKASYON HİZMET DETAYI
   ===================================================== */

/* ── Technical Requirements List ── */
.tech-reqs-block {
    border-left: 2px solid rgba(219, 203, 68, 0.3);
    padding-left: 32px;
    margin-top: 32px;
}

.tech-reqs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.tech-reqs-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-technical);
    color: var(--on-surface-variant);
    font-size: 14px;
}

.tech-reqs-item .bullet {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* ── Sidebar List ── */
.sidebar-list-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.sidebar-list-item:last-child {
    margin-bottom: 0;
}

.sidebar-list-item-num {
    font-family: var(--font-technical);
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
}

.sidebar-list-item-content h4 {
    font-family: var(--font-headline);
    font-size: 16px;
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: 8px;
}

.sidebar-list-item-content p {
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.5;
}

/* ── Support Widget ── */
.support-widget {
    margin-top: 40px;
    padding: 24px;
    background: rgba(219, 203, 68, 0.05);
    border: 1px solid rgba(219, 203, 68, 0.15);
    border-radius: var(--radius-lg);
}

.support-widget p:first-child {
    font-family: var(--font-technical);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--on-surface-variant);
    margin-bottom: 8px;
}

.support-widget p:last-child {
    font-family: var(--font-technical);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

/* ── Hover step badge ── */
.hover-step-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
    transition: all var(--transition-base);
    margin-bottom: 24px;
}

.timeline-step-card:hover .hover-step-badge {
    background: var(--primary);
}

.timeline-step-card:hover .hover-step-badge span {
    color: var(--background);
}

.hover-step-badge span {
    font-family: var(--font-technical);
    color: var(--primary);
    font-weight: 700;
    transition: color var(--transition-base);
}

/* ── Proposal CTA Card ── */
.proposal-cta-card {
    padding: 64px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-bottom: 96px;
}

.proposal-cta-blur {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 256px;
    height: 256px;
    background: rgba(219, 203, 68, 0.1);
    border-radius: 50%;
    filter: blur(60px);
    transition: background var(--transition-base);
}

.proposal-cta-card:hover .proposal-cta-blur {
    background: rgba(219, 203, 68, 0.2);
}

.proposal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

@media (min-width: 769px) {
    .proposal-form {
        flex-direction: row;
    }
}

.proposal-input {
    width: 100%;
    max-width: 320px;
    background: #000;
    border: 1px solid var(--outline-variant);
    padding: 16px 24px;
    font-family: var(--font-technical);
    color: var(--on-surface);
    outline: none;
    border-radius: var(--radius-default);
    transition: all var(--transition-base);
}

.proposal-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(219, 203, 68, 0.2);
}

.proposal-btn {
    width: 100%;
    max-width: 320px;
    background: var(--primary);
    color: var(--background);
    padding: 16px 48px;
    font-family: var(--font-technical);
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-default);
    transition: all var(--transition-base);
}

@media (min-width: 769px) {
    .proposal-btn {
        width: auto;
    }
}

.proposal-btn:hover {
    background: var(--primary-container);
    color: var(--background);
    box-shadow: 0 8px 24px rgba(219, 203, 68, 0.2);
}

/* =====================================================
   YOLA TERK HİZMET DETAYI
   ===================================================== */

/* ── Advantages Section Layout ── */
.advantages-container-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
    margin-bottom: 96px;
}

.advantages-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 16px;
}

.advantages-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-default);
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all var(--transition-slow);
    position: relative;
    z-index: 10;
}

.advantages-img-wrap:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.advantages-glow-bg-1 {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: rgba(219, 203, 68, 0.1);
    filter: blur(80px);
    z-index: 0;
}

.advantages-glow-bg-2 {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(219, 203, 68, 0.1);
    filter: blur(80px);
    z-index: 0;
}

.advantages-items-col {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.advantage-list-item {
    display: flex;
    gap: 24px;
}

.advantage-list-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(219, 203, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.advantage-list-icon .material-symbols-outlined {
    font-size: 24px;
}

.advantage-list-desc h5 {
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: 8px;
}

.advantage-list-desc p {
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.6;
}

/* ── Primary Call button highlight ── */
.shadow-btn-glow {
    box-shadow: 0 0 40px rgba(219, 203, 68, 0.2);
}

.shadow-btn-glow:hover {
    box-shadow: 0 0 50px rgba(219, 203, 68, 0.4);
}

/* ── Yola Terk Responsive Rules ── */
@media (max-width: 1024px) {
    .advantages-container-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* =====================================================
   YOLDAN İHDAS HİZMET DETAYI
   ===================================================== */

/* ── Dikey Timeline Stilleri ── */
.timeline-vertical-wrapper {
    position: relative;
    padding: 40px 0;
}

.timeline-vertical-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(219, 203, 68, 0.5) 15%, rgba(219, 203, 68, 0.5) 85%, transparent);
}

.timeline-vertical-steps {
    display: flex;
    flex-direction: column;
    gap: 64px;
    position: relative;
}

.timeline-vertical-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.timeline-vertical-step:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-vertical-content-wrapper {
    width: 45%;
}

.timeline-vertical-node-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.timeline-vertical-node {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.timeline-vertical-node-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.timeline-vertical-step:hover .timeline-vertical-node {
    background: var(--primary);
    box-shadow: 0 0 15px rgba(219, 203, 68, 0.4);
}

.timeline-vertical-step:hover .timeline-vertical-node-dot {
    background: var(--background);
}

.timeline-vertical-card {
    transition: all var(--transition-base);
}

.timeline-vertical-step:nth-child(odd) .timeline-vertical-card:hover {
    transform: translateX(-8px);
}

.timeline-vertical-step:nth-child(even) .timeline-vertical-card:hover {
    transform: translateX(8px);
}

/* ── CTA Mesh Pattern Arka Plan ── */
.mesh-dots-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(219, 203, 68, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

/* ── Responsive Rules ── */
@media (max-width: 768px) {
    .timeline-vertical-line {
        left: 20px;
        transform: none;
    }

    .timeline-vertical-step,
    .timeline-vertical-step:nth-child(even) {
        flex-direction: row;
        justify-content: flex-start;
        gap: 32px;
    }

    .timeline-vertical-content-wrapper {
        width: calc(100% - 60px);
        margin-left: 60px;
    }

    .timeline-vertical-node-wrapper {
        left: 20px;
        transform: translateX(-50%);
    }

    .timeline-vertical-step:nth-child(odd) .timeline-vertical-card:hover,
    .timeline-vertical-step:nth-child(even) .timeline-vertical-card:hover {
        transform: translateY(-4px);
    }
}

/* ── İhdas Grid Stilleri ── */
.ihdas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gutter);
    align-items: center;
    margin-bottom: 96px;
}

@media (max-width: 1024px) {
    .ihdas-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* =====================================================
   TEKNİK UYGULAMA SORUMLULUĞU (TUS) HİZMET DETAYI
   ===================================================== */

.tus-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.tus-process-step {
    position: relative;
    padding: 32px;
    transition: all var(--transition-base);
}

.tus-process-number {
    font-family: var(--font-technical);
    color: var(--primary);
    font-size: 64px;
    font-weight: 700;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 16px;
    z-index: 1;
    transition: opacity var(--transition-base);
}

.tus-process-step:hover .tus-process-number {
    opacity: 0.3;
}

.tus-process-body {
    position: relative;
    z-index: 10;
    padding-top: 48px;
}

.tus-process-body h4 {
    font-family: var(--font-headline);
    font-size: 16px;
    font-weight: 600;
    color: var(--on-surface);
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.tus-process-line {
    height: 1px;
    width: 48px;
    background: var(--primary);
    margin-bottom: 24px;
    transition: width var(--transition-base);
}

.tus-process-step:hover .tus-process-line {
    width: 100%;
}

.tus-process-body p {
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.6;
    margin: 0;
}

/* ── Responsive Rules ── */
@media (max-width: 1024px) {
    .tus-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tus-process-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   İLETİŞİM SAYFASI REVİZYONU
   ===================================================== */

/* ── Koyu Mod Harita Filtresi ── */
.iletisim-map-iframe-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.iletisim-map-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.92) contrast(1.2) brightness(0.9);
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.iletisim-map-iframe-container:hover iframe {
    opacity: 0.8;
}

/* ── Form Alanları Odaklanma (Focus) Efektleri ── */
.iletisim-form-side input:focus,
.iletisim-form-side textarea:focus,
.iletisim-form-side select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(219, 203, 68, 0.2);
    outline: none;
}

/* ── Kurumsal Tabela Logo Stilleri ── */
.custom-logo {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid #dbcb44;
    border-radius: 4px;
    overflow: hidden;
    width: 160px;
    transition: transform var(--transition-base);
}

.custom-logo:hover {
    transform: scale(1.02);
}

.custom-logo-top {
    background-color: #dbcb44;
    color: #15140b;
    font-weight: 800;
    font-size: 22px;
    padding: 6px 8px 4px;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.custom-logo-bottom {
    background-color: #15140b;
    color: #ffffff;
    font-weight: 700;
    font-size: 11px;
    padding: 5px 8px;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

/* Footer logo ayarı */
.footer .custom-logo {
    width: 180px;
    margin-bottom: 24px;
}

.footer .custom-logo-top {
    font-size: 24px;
}

.footer .custom-logo-bottom {
    font-size: 12px;
}

/* Helper Classes */
.desktop-only {
    display: inline-block !important;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
}

/* ── Sabit WhatsApp Butonu ── */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 32px;
    right: 32px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    transform: translateY(-5px) scale(1.05);
}

.whatsapp-float svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 24px;
        right: 24px;
    }
    .whatsapp-float svg {
        width: 20px;
        height: 20px;
    }
}

/* ── Çerez Onay Banner'ı ── */
.cookie-banner {
    position: fixed;
    bottom: 32px;
    left: 32px;
    max-width: 420px;
    background: rgba(21, 20, 11, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(219, 203, 68, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(120%);
    opacity: 0;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-content {
    color: var(--on-surface-variant);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-banner-content a:hover {
    color: var(--primary-fixed);
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 20px;
    font-family: var(--font-technical);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-default);
    cursor: pointer;
    transition: all var(--transition-fast);
    flex: 1;
    text-align: center;
    border: none;
}

.cookie-btn-accept {
    background: var(--primary);
    color: var(--background);
}

.cookie-btn-accept:hover {
    background: var(--primary-fixed);
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--on-surface-variant);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--on-surface);
}

@media (max-width: 576px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }
}

/* ── Dil Seçici (Language Switcher) ── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-technical);
    font-size: 13px;
    font-weight: 600;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--on-surface-variant);
    cursor: pointer;
    padding: 4px 6px;
    transition: color var(--transition-fast);
    text-transform: uppercase;
    font-weight: 600;
}

.lang-btn:hover {
    color: var(--primary);
}

.lang-btn.active {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(219, 203, 68, 0.4);
    font-weight: 700;
}

.lang-separator {
    color: rgba(255, 255, 255, 0.15);
    user-select: none;
}

@media (max-width: 1024px) {
    .lang-switcher {
        margin-left: auto;
        margin-right: 12px;
    }
}

/* ── İnteraktif Süreç Akış Şeması Stilleri ── */
.process-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.process-tab {
    background: rgba(33, 32, 23, 0.4);
    border: 1px solid var(--outline-variant);
    color: var(--on-surface-variant);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-headline);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.process-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(219, 203, 68, 0.05);
}

.process-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--on-primary);
    box-shadow: 0 0 20px rgba(219, 203, 68, 0.25);
    font-weight: 700;
}

/* Slide Up Fade In Keyframes for Smooth Transition */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.surec-wrapper {
    display: none;
}

.surec-wrapper.active {
    display: block !important;
    animation: fadeInSlideUp var(--transition-slow) forwards;
}

@media (max-width: 768px) {
    .process-tab {
        padding: 8px 16px;
        font-size: 11px;
    }
}
