@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #0A0A0A;
    --surface: #141414;
    --surface-soft: #1a1a1a;
    --primary: #0A0A0A;
    --secondary: #141414;
    --text: #FFFFFF;
    --text-muted: #B0B0B0;
    --line: rgba(255, 255, 255, 0.08);
    --accent: #FFD700;
    --accent-hover: #e6c200;
    --accent-soft: rgba(255, 215, 0, 0.12);
    --success: #22c55e;
    --danger: #dc2626;
    --radius: 8px;
    --radius-sm: 6px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.5);
    --transition: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

.section-padding {
    padding: 80px 0;
}

.section-kicker {
    display: inline-block;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.navbar {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
}

/* Logo tema rengi: mask ile accent kullanılır, görünen bu span */
.logo-img.logo-tint {
    width: 200px;
    height: 42px;
    max-width: 100%;
    display: block;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}

.logo-img-fallback {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.logo h2 {
    color: var(--text);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo h2 span {
    color: var(--accent);
}

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

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--accent);
}

/* Masaüstünde gizlenecek mobil öğeler */
.nav-menu a i,
.mobile-only-logo,
.mobile-only-footer {
    display: none !important;
}

.mobile-menu-btn,
.mobile-menu-close {
    display: none;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 22px;
    cursor: pointer;
}

.header-contact .btn {
    background: #fff !important;
    color: #0A0A0A !important;
    border: none !important;
}

.header-contact .btn:hover {
    background: #e5e5e5 !important;
    color: #0A0A0A !important;
}

/* Flash */
.flash-message {
    position: fixed;
    top: 96px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
    min-width: 320px;
    max-width: 94%;
}

.flash-body {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.flash-ok {
    border-left: 4px solid var(--success);
}

.flash-no {
    border-left: 4px solid var(--danger);
}

.flash-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flash-left span {
    color: var(--text);
}

.flash-ok i {
    color: var(--success);
}

.flash-no i {
    color: var(--danger);
}

.flash-close {
    background: transparent;
    border: 0;
    color: #94a3b8;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: none;
    background: var(--accent);
    color: #0A0A0A;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 24px;
    transition: var(--transition);
    cursor: pointer;
    font-family: inherit;
}

.btn:hover {
    background: var(--accent-hover);
    color: #0A0A0A;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: #fff;
}

.btn-sm {
    padding: 10px 18px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

/* Hero */
.hero-slider {
    padding-top: 0;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 132px 0 70px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(12, 18, 34, 0.92) 0%, rgba(12, 18, 34, 0.7) 60%, transparent 100%);
}

.hero-page {
    min-height: 38vh;
    padding-top: 110px;
    padding-bottom: 48px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    color: #fff;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.6;
}

.hero-btns,
.detail-hero-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Sections common cards */
.story-grid,
.about-layout-noimage,
.service-detail-layout,
.why-grid,
.contact-grid {
    display: grid;
    gap: 24px;
}

.story-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: var(--accent);
    color: #111827;
    border-radius: 12px;
    padding: 14px 16px;
}

.experience-badge h3 {
    font-size: 28px;
    line-height: 1;
}

.experience-badge p {
    margin-top: 4px;
    font-size: 11px;
    text-transform: uppercase;
}

.story-content h2,
.services-header h2,
.about-title,
.service-detail-title {
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 14px;
    color: var(--text);
}

.story-content p,
.about-paragraph,
.value-card p,
.service-card p,
.service-detail-text,
.detail-intro-card p,
.why-card p,
.info-text p {
    color: var(--text-muted);
}

/* Services */
.services-page .section-header {
    margin-bottom: 40px;
}

.services-cta {
    margin-top: 48px;
}

.services-header {
    text-align: center;
    margin-bottom: 44px;
}

.services-swiper {
    padding-bottom: 12px !important;
}

.services-static-wrapper,
.services-grid,
.services-grid-page {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    height: 100%;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(184, 134, 11, 0.2);
}

.service-card-media {
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-media img {
    transform: scale(1.05);
}

.service-card-category {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.service-card h3 {
    margin-bottom: 8px;
    font-size: 22px;
    color: var(--text);
}

.service-card-link-text {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 14px;
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}

.swiper-nav {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
}

.swiper-button-next-custom {
    background: var(--accent);
    border-color: var(--accent);
    color: #111827;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.stat-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    text-align: center;
    padding: 22px 14px;
}

.stat-item h3 {
    color: #f6d18a;
    font-size: 40px;
}

.stat-item p {
    color: var(--text-muted);
    margin-top: 7px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why + CTA */
.why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px;
}

.why-card i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(214, 168, 75, 0.18);
    color: #f7d79d;
    margin-bottom: 10px;
}

.help-cta {
    padding-top: 8px;
}

.help-cta-box {
    background: linear-gradient(130deg, #2e2210, #111827);
    border: 1px solid rgba(214, 168, 75, 0.3);
    border-radius: 16px;
    padding: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.help-cta-box h3 {
    font-size: 30px;
    color: #fff;
}

.help-cta-box p {
    color: #cfdbf0;
}

.help-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Page Sections */
.page-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .section-kicker {
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.page-cta-box {
    margin-top: 48px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 28px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.page-cta-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.page-cta-box p {
    color: var(--text-muted);
    font-size: 15px;
}

/* About */
.about-intro {
    padding-top: 80px;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 48px;
    align-items: start;
}

.about-content .section-kicker {
    margin-bottom: 10px;
}

.about-title {
    margin-bottom: 20px;
}

.about-paragraph {
    margin-bottom: 16px;
    line-height: 1.75;
}

.about-paragraph:last-of-type {
    margin-bottom: 0;
}

.about-side-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.about-side-title {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.about-side-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-side-item:last-of-type {
    margin-bottom: 24px;
}

.about-side-item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: var(--radius-sm);
}

.about-side-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.about-side-item p {
    color: var(--text);
    font-weight: 600;
    margin: 0;
}

.mv-grid {
    display: grid;
    gap: 18px;
}

.mv-grid-3,
.mv-grid-vertical {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
}

.value-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    font-size: 22px;
}

.value-card h3 {
    margin-bottom: 12px;
    color: var(--text);
    font-size: 22px;
}

.value-card-simple {
    min-height: 260px;
}

/* Contact */
.contact-page {
    padding-top: 64px;
}

/* Hero - orantılı padding ve tipografi */
.contact-hero {
    padding: 96px 0 40px;
    text-align: center;
}

.contact-hero-inner {
    max-width: 560px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Ana blok - grid ve kartlar orantılı */
.contact-main {
    padding: 40px 0 56px;
}

.contact-main .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 48px;
}

@media (min-width: 1200px) {
    .contact-main .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
}

.contact-info-col .contact-info-card {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 20px;
    box-shadow: var(--shadow);
}

.contact-form-col {
    display: flex;
    min-height: 0;
}

.contact-form-col .contact-form-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.contact-info-card .contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
}

.contact-info-card>div {
    width: 100%;
    text-align: center;
}

.contact-info-card h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 6px 0;
    letter-spacing: 0.02em;
}

.contact-info-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.contact-info-card a {
    color: var(--text-muted);
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--accent);
}

.contact-form-col .contact-form-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 26px;
    box-shadow: var(--shadow);
}

.contact-form-col .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    min-height: 0;
}

.contact-form-col label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.contact-form-col input,
.contact-form-col textarea {
    padding: 12px 14px;
    font-size: 0.9375rem;
}

.contact-form-col textarea {
    min-height: 120px;
    flex: 1;
}

.contact-submit-btn {
    margin-top: auto;
    background: var(--accent) !important;
    color: #0A0A0A !important;
    padding: 14px 20px !important;
}

.contact-submit-btn:hover {
    background: var(--accent-hover) !important;
    color: #0A0A0A !important;
}

.contact-map-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 320px;
}

.contact-map-label {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    color: var(--text);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.contact-map-label i {
    color: var(--accent);
}

.contact-main .contact-map-wrap .contact-map {
    position: absolute;
    inset: 0;
    min-height: 100%;
    width: 100%;
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 260px;
}

.contact-map-iframe {
    display: block;
    filter: grayscale(100%) invert(92%) contrast(83%);
    transition: filter 0.4s ease;
}

.contact-map-wrap:hover .contact-map-iframe {
    filter: none;
}

.contact-trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 20px 28px;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.contact-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 600;
}

.contact-trust-item i {
    color: var(--accent);
    font-size: 20px;
}



.contact-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-card-padding {
    padding: 32px;
}

.contact-title {
    font-size: 26px;
    margin-bottom: 24px;
    color: var(--text);
}

.contact-form-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 15px;
}

.contact-info-list {
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-item:last-of-type {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: var(--radius-sm);
}

.contact-info-item h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-info-item p {
    color: var(--text);
    margin: 0;
}

.contact-info-item a {
    color: var(--text);
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--accent);
}

.info-item-spacing {
    margin-bottom: 18px;
}

.info-text h4 {
    color: var(--accent);
    font-size: 14px;
}

.info-text p {
    color: var(--text-muted);
}

.contact-map {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 260px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-group {
    margin-bottom: 0;
}

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

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--surface-soft);
    border-radius: var(--radius-sm);
    color: var(--text);
    padding: 14px 16px;
    font-family: inherit;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

/* Detail */
.service-detail-layout {
    grid-template-columns: 1.05fr 1fr;
    align-items: start;
    gap: 48px;
}

.detail-intro-card {
    margin-bottom: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    box-shadow: var(--shadow);
}

.detail-intro-card h3 {
    font-size: 24px;
    margin-bottom: 6px;
    color: var(--text);
}

.detail-intro-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-intro-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    border: 1px solid rgba(184, 134, 11, 0.25);
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
}

.service-detail-note {
    border-left: 4px solid var(--accent);
    padding-left: 16px;
    margin-top: 20px;
    color: var(--text-muted);
}

.service-detail-text {
    color: var(--text-muted);
}

.service-detail-lead {
    margin-bottom: 1.25em;
    line-height: 1.75;
}

.service-detail-content {
    margin-top: 1em;
    line-height: 1.75;
}

.service-detail-content p {
    margin-bottom: 1em;
}

.service-detail-content ul,
.service-detail-content ol {
    margin: 0.75em 0 1em 1.25em;
}

.service-detail-content li {
    margin-bottom: 0.35em;
}

.service-detail-btn {
    margin-top: 20px;
}

.service-main-image img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.service-gallery-section {
    background: var(--surface-soft);
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.service-gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--line);
    display: block;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.service-gallery-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.35s ease;
    display: block;
}

.service-gallery-item:hover .service-gallery-image {
    transform: scale(1.05);
}

/* Footer */
.footer {
    margin-top: 0;
    border-top: 1px solid var(--line);
    background: var(--bg);
    color: var(--text-muted);
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 30px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    position: relative;
    text-decoration: none;
}

/* Footer logo tema rengi: mask + accent */
.footer-logo-img.logo-tint {
    width: 200px;
    height: 52px;
    max-width: 100%;
    display: block;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}

.footer-logo h2 {
    color: var(--text);
}

.footer-logo h2 span {
    color: var(--accent);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 320px;
    margin: 0.75em 0 0 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: left;
}

.footer-col h4 {
    color: var(--text);
    margin-bottom: 12px;
}

.footer-col ul li {
    list-style: none;
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-muted);
}

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

.footer-contact-list {
    margin-top: 12px;
    display: grid;
    gap: 7px;
}

.footer-contact-list p {
    display: flex;
    gap: 8px;
}

.footer-contact-list i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-form {
    display: grid;
    gap: 9px;
}

.footer-form .btn {
    width: 100%;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.footer-bottom .footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom .footer-powered {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
}

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

.footer-sep {
    margin: 0 8px;
    color: var(--text-muted);
    opacity: 0.6;
}

/* Homepage v2 */
.homev2-hero {
    position: relative;
    min-height: 94vh;
    padding: 150px 0 80px;
    background-size: cover;
    background-position: center;
}

.homev2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(5, 10, 18, 0.86), rgba(11, 18, 32, 0.5));
}

.homev2-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: center;
}

.homev2-chip {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: #e8effd;
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.homev2-chip-light {
    border-color: rgba(214, 168, 75, 0.45);
    color: #f6d18a;
}

.homev2-copy h1 {
    font-size: 58px;
    line-height: 1.08;
    margin-bottom: 14px;
}

.homev2-copy p {
    color: #ced8ec;
    font-size: 19px;
    max-width: 700px;
}

.homev2-actions {
    margin-top: 22px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.homev2-panel {
    background: rgba(11, 18, 32, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 22px;
}

.homev2-panel h3 {
    margin-bottom: 10px;
    color: #fff;
}

.homev2-panel ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.homev2-panel li {
    display: flex;
    gap: 9px;
    color: #d8e2f4;
}

.homev2-panel i {
    margin-top: 4px;
    color: #f6d18a;
}

.homev2-metrics {
    margin-top: -34px;
    padding-top: 0;
}

.homev2-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.homev2-metric-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    text-align: center;
    padding: 20px 12px;
}

.homev2-metric-item h3 {
    color: #f6d18a;
    font-size: 38px;
}

.homev2-metric-item p {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.homev2-services .homev2-head {
    text-align: center;
    margin-bottom: 34px;
}

.homev2-services .homev2-head h2 {
    font-size: 40px;
}

.homev2-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.homev2-service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.homev2-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(214, 168, 75, 0.55);
}

.homev2-service-media {
    height: 220px;
}

.homev2-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.homev2-service-card:hover .homev2-service-media img {
    transform: scale(1.05);
}

.homev2-service-body {
    padding: 16px;
}

.homev2-service-body h3 {
    margin-bottom: 8px;
    font-size: 22px;
}

.homev2-service-body p {
    color: var(--text-muted);
}

.homev2-service-body span {
    margin-top: 12px;
    color: #f6d18a;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
}

.homev2-band {
    padding-top: 4px;
}

.homev2-band-inner {
    background: linear-gradient(130deg, #2e2210, #111827);
    border: 1px solid rgba(214, 168, 75, 0.3);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.homev2-band h3 {
    margin-bottom: 6px;
    font-size: 30px;
}

.homev2-band p {
    color: #cfdcf0;
}

/* Homepage v3 */
.homev3-hero {
    padding-top: 150px;
    padding-bottom: 64px;
    background: linear-gradient(180deg, rgba(8, 14, 24, 0.92), rgba(8, 14, 24, 0.8));
    border-bottom: 1px solid var(--line);
}

.homev3-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: stretch;
}

.homev3-main {
    background: linear-gradient(135deg, #152238, #1e2d49);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px;
}

.homev3-main .kicker {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    color: #f6d18a;
    border: 1px solid rgba(214, 168, 75, 0.42);
    background: rgba(214, 168, 75, 0.09);
    margin-bottom: 14px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.homev3-main h1 {
    font-size: 56px;
    line-height: 1.08;
    margin-bottom: 14px;
}

.homev3-main p {
    color: #cdd9ef;
}

.homev3-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.homev3-side {
    display: grid;
    gap: 12px;
}

.homev3-side-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
}

.homev3-side-card h4 {
    margin-bottom: 8px;
    color: #fff;
}

.homev3-side-card p {
    color: var(--text-muted);
}

.homev3-statline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.homev3-statline .item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
}

.homev3-statline .item h3 {
    color: #f6d18a;
    font-size: 30px;
}

.homev3-statline .item p {
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.homev3-services {
    padding-top: 76px;
}

.homev3-head {
    margin-bottom: 26px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
    flex-wrap: wrap;
}

.homev3-head h2 {
    font-size: 38px;
}

.homev3-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.homev3-card {
    display: block;
    color: inherit;
    text-decoration: none;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.homev3-card:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 168, 75, 0.56);
}

.homev3-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.homev3-card-body {
    padding: 14px;
}

.homev3-card-body h3 {
    margin-bottom: 7px;
    font-size: 21px;
}

.homev3-card-body p {
    color: var(--text-muted);
}

.homev3-card-body span {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #f6d18a;
    font-weight: 700;
}

.homev3-cta {
    padding-top: 8px;
}

.homev3-cta-box {
    border: 1px solid rgba(214, 168, 75, 0.35);
    border-radius: 16px;
    background: linear-gradient(130deg, #2a1f10, #121a2b);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.homev3-cta-box h3 {
    font-size: 30px;
    margin-bottom: 6px;
}

.homev3-cta-box p {
    color: #cfdcf0;
}

/* Homepage v4 */
.homev4-hero {
    padding-top: 148px;
    padding-bottom: 62px;
}

.homev4-hero-box {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 520px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

.homev4-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.homev4-hero-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(5, 10, 18, 0.85) 0%, rgba(5, 10, 18, 0.68) 45%, rgba(5, 10, 18, 0.56) 100%);
}

.homev4-hero-content,
.homev4-quick {
    position: relative;
    z-index: 2;
    padding: 34px;
}

.homev4-hero-content h1 {
    font-size: 58px;
    line-height: 1.08;
    margin: 12px 0 14px;
}

.homev4-hero-content p {
    color: #cfdbef;
    max-width: 700px;
    font-size: 18px;
}

.homev4-tag {
    display: inline-flex;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid rgba(214, 168, 75, 0.46);
    background: rgba(214, 168, 75, 0.1);
    color: #f7dba9;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.homev4-actions {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.homev4-quick {
    align-self: center;
    justify-self: end;
    max-width: 320px;
    width: 100%;
    background: rgba(11, 18, 32, 0.7);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.homev4-quick h3 {
    margin-bottom: 10px;
}

.homev4-quick p {
    color: #d8e2f3;
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.homev4-quick i {
    color: #f6d18a;
    margin-top: 4px;
}

.homev4-counters {
    padding-top: 18px;
}

.homev4-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.homev4-counter-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    text-align: center;
    padding: 20px 12px;
}

.homev4-counter-card h3 {
    font-size: 38px;
    color: #f6d18a;
}

.homev4-counter-card p {
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.homev4-services {
    padding-top: 76px;
}

.homev4-head {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.homev4-head h2 {
    font-size: 40px;
}

.homev4-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.homev4-service-card {
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    transition: var(--transition);
}

.homev4-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 168, 75, 0.58);
}

.homev4-service-image {
    height: 220px;
}

.homev4-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homev4-service-text {
    padding: 14px;
}

.homev4-service-text h3 {
    margin-bottom: 8px;
    font-size: 22px;
}

.homev4-service-text p {
    color: var(--text-muted);
}

.homev4-service-text span {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #f6d18a;
    font-weight: 700;
}

.homev4-cta {
    padding-top: 6px;
}

.homev4-cta-box {
    border-radius: 16px;
    border: 1px solid rgba(214, 168, 75, 0.34);
    background: linear-gradient(130deg, #302512, #121a2b);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.homev4-cta-box h3 {
    font-size: 30px;
    margin-bottom: 6px;
}

.homev4-cta-box p {
    color: #cfdbf0;
}

/* Homepage v5 */
.homev5-hero {
    padding-top: 148px;
    padding-bottom: 58px;
}

.homev5-hero-wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 20px;
    align-items: stretch;
}

.homev5-left {
    background: linear-gradient(140deg, #141f34, #1a2740);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px;
}

.homev5-kicker {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(214, 168, 75, 0.46);
    color: #f6d18a;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.homev5-left h1 {
    margin: 14px 0;
    font-size: 56px;
    line-height: 1.08;
}

.homev5-left p {
    color: #cfdcf0;
    font-size: 18px;
}

.homev5-actions {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.homev5-mini-stats {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.homev5-mini-stats>div {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 10px;
    text-align: center;
    padding: 10px 6px;
}

.homev5-mini-stats h4 {
    color: #f6d18a;
    font-size: 28px;
}

.homev5-mini-stats p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.homev5-right {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 460px;
}

.homev5-right-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.homev5-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(5, 10, 18, 0.74), rgba(5, 10, 18, 0.42));
}

.homev5-contact-box {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    background: rgba(11, 18, 32, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 12px;
}

.homev5-contact-box p {
    display: flex;
    gap: 8px;
    color: #dce6f6;
    margin-bottom: 6px;
}

.homev5-contact-box p:last-child {
    margin-bottom: 0;
}

.homev5-contact-box i {
    color: #f6d18a;
    margin-top: 4px;
}

.homev5-grid-section {
    padding-top: 76px;
}

.homev5-head {
    margin-bottom: 22px;
    text-align: center;
}

.homev5-head h2 {
    font-size: 40px;
}

.homev5-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.homev5-card {
    text-decoration: none;
    color: inherit;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.homev5-card:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 168, 75, 0.58);
}

.homev5-card-image {
    height: 220px;
}

.homev5-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homev5-card-body {
    padding: 14px;
}

.homev5-card-body h3 {
    margin-bottom: 8px;
    font-size: 22px;
}

.homev5-card-body p {
    color: var(--text-muted);
}

.homev5-card-body span {
    margin-top: 10px;
    display: inline-flex;
    gap: 7px;
    align-items: center;
    color: #f6d18a;
    font-weight: 700;
}

.homev5-features {
    padding-top: 10px;
}

.homev5-feature-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.homev5-feature-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px;
}

.homev5-feature-item i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(214, 168, 75, 0.16);
    color: #f6d18a;
    margin-bottom: 8px;
}

.homev5-feature-item h3 {
    margin-bottom: 8px;
}

.homev5-feature-item p {
    color: var(--text-muted);
}

.homev5-cta {
    padding-top: 8px;
}

.homev5-cta-box {
    border-radius: 16px;
    border: 1px solid rgba(214, 168, 75, 0.35);
    background: linear-gradient(130deg, #302512, #121a2b);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.homev5-cta-box h3 {
    font-size: 30px;
    margin-bottom: 6px;
}

.homev5-cta-box p {
    color: #cfdbf0;
}

@media (max-width: 1100px) {

    .homev5-grid,
    .homev5-feature-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .homev5-hero-wrap {
        grid-template-columns: 1fr;
    }

    .homev4-counter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .homev4-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .homev3-statline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {

    .homev5-grid,
    .homev5-feature-wrap {
        grid-template-columns: 1fr;
    }

    .homev5-left h1,
    .homev5-cta-box h3 {
        font-size: 36px;
    }

    .homev5-mini-stats {
        grid-template-columns: 1fr;
    }

    .homev5-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .homev4-hero-box,
    .homev4-service-grid {
        grid-template-columns: 1fr;
    }

    .homev4-hero-content h1,
    .homev4-cta-box h3 {
        font-size: 36px;
    }

    .homev4-quick {
        max-width: 100%;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .homev4-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .homev3-hero-grid,
    .homev3-grid {
        grid-template-columns: 1fr;
    }

    .homev3-main h1,
    .homev3-cta-box h3 {
        font-size: 36px;
    }

    .homev3-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-content h1 {
        font-size: 50px;
    }

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

    .services-grid-page,
    .services-grid,
    .services-static-wrapper,
    .homev2-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .homev2-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .homev2-hero-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .container {
        padding: 0 18px;
    }

    .header-contact {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
        backdrop-filter: blur(15px);
        z-index: 1010;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 40px;
        align-items: flex-start;
        display: flex; /* Flex'i zorla */
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        opacity: 0;
        transform: translateX(30px);
        width: 100%;
    }

    .nav-menu.active li {
        animation: navItemSlide 0.5s ease forwards;
        animation-delay: calc(var(--i) * 0.1s);
    }

    @keyframes navItemSlide {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-menu a {
        font-size: 20px;
        padding: 12px 0;
        width: 100%;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu a i {
        display: inline-block !important;
        margin-right: 12px;
        color: var(--accent);
        width: 24px;
        text-align: center;
    }

    .mobile-only-logo {
        display: block !important;
        margin-bottom: 30px;
    }

    .mobile-only-footer {
        display: block !important;
        margin-top: 20px;
    }

    .mobile-only-hr {
        height: 1px;
        background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
        opacity: 0.3;
        margin: 15px 0;
        width: 80px;
    }

    .mobile-only-contact {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .mobile-nav-contact a {
        font-size: 14px !important;
        color: var(--text-muted) !important;
        border-bottom: none !important;
        padding: 0 !important;
    }

    /* Contact Page Mobile Optimization - Premium Design */
    .contact-hero {
        padding: 96px 0 32px;
    }

    .contact-hero-title {
        font-size: 1.75rem;
        letter-spacing: -0.01em;
    }

    .contact-main {
        padding: 8px 0 40px;
    }

    .contact-main .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin-bottom: 32px;
    }

    .contact-info-col {
        gap: 12px;
    }

    .contact-info-col .contact-info-card {
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: flex-start;
        padding: 20px 18px;
        gap: 16px;
        background: var(--surface-soft);
        border: 1px solid var(--line);
        border-radius: 14px;
        box-shadow: var(--shadow);
    }

    .contact-info-card > div {
        text-align: left;
    }

    .contact-info-card .contact-info-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .contact-info-card h4 {
        font-size: 0.75rem;
        margin-bottom: 2px;
        opacity: 0.8;
    }

    .contact-info-card p {
        font-size: 0.875rem;
        font-weight: 500;
    }

    .contact-form-col .contact-form-card {
        padding: 24px 20px;
        border-radius: 16px;
        background: var(--surface);
    }

    .contact-form-col label {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }

    .contact-form-col input,
    .contact-form-col textarea {
        background: var(--surface-soft);
        border-radius: 10px;
        font-size: 14px;
    }

    .contact-submit-btn {
        padding: 16px !important;
        font-size: 15px;
        border-radius: 12px;
    }

    .contact-map-wrap {
        min-height: 240px;
        border-radius: 16px;
    }

    .mobile-menu-close {
        display: inline-flex;
        position: absolute;
        top: 24px;
        right: 24px;
    }

    .hero {
        min-height: auto;
    }

    .hero-page {
        min-height: auto;
        padding-top: 132px;
        padding-bottom: 54px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .story-grid,
    .about-layout,
    .about-layout-noimage,
    .mv-grid-3,
    .mv-grid-vertical,
    .why-grid,
    .contact-grid,
    .service-detail-layout,
    .footer-grid,
    .services-grid-page,
    .services-grid,
    .services-static-wrapper {
        grid-template-columns: 1fr;
    }

    .page-cta-box {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .help-cta-box,
    .detail-intro-card,
    .homev2-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .value-card-simple {
        min-height: auto;
    }
}

@media (max-width: 768px) {

    section,
    .section-padding {
        padding: 70px 0;
    }

    .page-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .contact-trust-bar {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .homev2-copy h1,
    .homev2-band h3 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .services-header h2,
    .story-content h2,
    .about-title,
    .service-detail-title {
        font-size: 30px;
    }

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

    .contact-hero-title {
        font-size: 1.6rem;
    }

    .contact-hero-subtitle {
        font-size: 0.9375rem;
    }

    .contact-info-col .contact-info-card {
        padding: 14px;
        gap: 14px;
    }

    .contact-info-card .contact-info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .contact-info-card p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* 404 Error Page */
.page-error {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
}

.page-error-inner {
    text-align: center;
}

.page-error-code {
    font-size: 140px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
    margin: 0 0 16px;
}

.page-error-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.page-error-title span {
    color: var(--accent);
}

.page-error-text {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.page-error-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-error-code {
        font-size: 100px;
    }

    .page-error-title {
        font-size: 28px;
    }
}

/* Homepage Hero Slider v6 */
.homev6-hero {
    padding-top: 82px;
    padding-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}

.homev6-shell {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #0b1220;
}

.homev6-swiper {
    width: 100%;
    height: 100vh;
}

.homev6-swiper .swiper-wrapper,
.homev6-swiper .swiper-slide {
    height: 100%;
}

.homev6-slide {
    min-height: 100vh;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.homev6-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.homev6-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px 100px;
    color: #fff;
}

.homev6-kicker {
    display: inline-flex;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.homev6-slide-content h1 {
    margin: 24px 0 16px;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
}

.homev6-slide-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.homev6-actions {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.homev6-btn-primary {
    background: #fff !important;
    color: #0f172a !important;
    border: none !important;
    padding: 14px 28px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.homev6-btn-primary:hover {
    background: #f1f5f9 !important;
    color: #0f172a !important;
}

.homev6-btn-outline {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    padding: 12px 26px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.homev6-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-color: #fff !important;
}

.homev6-live-block {
    position: absolute;
    right: 32px;
    bottom: 100px;
    z-index: 3;
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.homev6-live-line {
    width: 4px;
    background: var(--accent);
    margin-right: 14px;
}

.homev6-live-block div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.homev6-live-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.homev6-live-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.homev6-live-meta {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1px;
}

.homev6-controls {
    position: absolute;
    left: 48px;
    right: 48px;
    bottom: 36px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-start;
}

.homev6-prev,
.homev6-next {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.homev6-prev:hover,
.homev6-next:hover {
    background: rgba(255, 255, 255, 0.15);
}

.homev6-pagination {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.homev6-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.homev6-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background: var(--accent);
}

.homev6-controls {
    padding-top: 72px;
}

/* Slider ile Hizmetlerimiz arası - sade geçiş */
.homev6-intro {
    padding: 32px 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.homev6-intro-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.homev6-intro-text {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.homev6-intro-text strong {
    color: var(--accent);
    font-weight: 700;
}

.homev6-head {
    margin-bottom: 24px;
    text-align: center;
}

.homev6-head h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
}

.homev6-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.homev6-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.homev6-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 215, 0, 0.2);
}

.homev6-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.homev6-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--accent);
    color: #0A0A0A;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border-radius: 4px;
}

.homev6-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homev6-card-body {
    padding: 16px;
}

.homev6-card-body h3 {
    font-size: 23px;
    margin-bottom: 8px;
    color: var(--text);
}

.homev6-card-body p {
    color: var(--text-muted);
}

.homev6-card-body span {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
}

.homev6-features {
    padding-top: 14px;
}

.homev6-feature-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.homev6-feature-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.homev6-feature-item i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 20px;
}

.homev6-feature-item h3 {
    color: var(--text);
    margin-bottom: 10px;
}

.homev6-feature-item p {
    color: var(--text-muted);
}

/* Müşteri Memnuniyeti – Hizmetlerimiz altı, tek kart, tam ortalanmış */
.homev6-satisfaction {
    padding: 56px 0 64px;
    background: var(--surface-soft);
}

.homev6-satisfaction-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 880px;
    margin: 0 auto;
    padding: 44px 56px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.homev6-satisfaction-badge {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 3px solid var(--accent);
    text-align: center;
}

.homev6-satisfaction-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
}

.homev6-satisfaction-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.3;
    max-width: 90px;
}

.homev6-satisfaction-content {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.homev6-satisfaction-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 12px 0;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.homev6-satisfaction-text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    max-width: 100%;
}

@media (max-width: 768px) {
    .homev6-satisfaction {
        padding: 40px 0 48px;
    }

    .homev6-satisfaction-card {
        flex-direction: column;
        text-align: center;
        gap: 28px;
        padding: 36px 24px;
    }

    .homev6-satisfaction-badge {
        width: 120px;
        height: 120px;
    }

    .homev6-satisfaction-value {
        font-size: 1.875rem;
    }

    .homev6-satisfaction-label {
        max-width: 80px;
    }

    .homev6-satisfaction-title {
        font-size: 1.15rem;
    }

    .homev6-satisfaction-text {
        max-width: none;
    }
}

.homev6-cta {
    padding: 64px 0 80px;
}

.homev6-cta-box {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 40px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.homev6-cta-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent);
}

.homev6-cta-content {
    flex: 1;
}

.homev6-cta-box h3 {
    color: var(--text);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.homev6-cta-box p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
}

.homev6-cta-btn {
    flex-shrink: 0;
    background: var(--accent) !important;
    color: #0A0A0A !important;
}

.homev6-cta-btn:hover {
    background: var(--accent-hover) !important;
    color: #0A0A0A !important;
}

@media (max-width: 1100px) {

    .homev6-grid,
    .homev6-feature-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .homev6-slide-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .nav-menu {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
    }

    .homev6-slide {
        min-height: 100vh;
    }

    .homev6-slide-content {
        padding: 0 24px 100px;
    }

    .homev6-slide-content h1 {
        font-size: 38px;
    }

    .homev6-grid,
    .homev6-feature-wrap {
        grid-template-columns: 1fr;
    }

    .homev6-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .homev6-controls {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .homev6-slide-content h1 {
        font-size: 32px;
    }

    .homev6-slide-content p {
        font-size: 16px;
    }

    .homev6-live-block {
        right: 16px;
        bottom: 80px;
        padding: 10px 12px;
    }

    .homev6-live-title {
        font-size: 11px;
    }

    .homev6-live-meta {
        font-size: 9px;
    }

    .homev6-head h2,
    .homev6-cta-box h3 {
        font-size: 30px;
    }
}

/* Contact & Grid Mobile Overrides - KESİN ÇÖZÜM */
@media (max-width: 1199px) {
    .contact-main .contact-grid,
    .contact-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }

    .contact-info-col {
        order: 1 !important;
        width: 100% !important;
    }

    .contact-form-col {
        order: 2 !important;
        width: 100% !important;
    }

    .contact-info-col,
    .contact-form-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}