:root {
    --blue-900: #062f55;
    --blue-800: #0a477d;
    --blue-700: #0d5fa5;
    --blue-100: #eaf5ff;
    --blue-600: #0d5fa5;
    --orange-600: #f47b20;
    --orange-700: #d8610f;
    --orange-500: #f47b20;
    --ink: #172033;
    --muted: #667085;
    --line: #e5edf5;
    --paper: #ffffff;
    --soft: #f6f9fc;
    --steel: #74879a;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(6, 47, 85, .08);
}

.top-strip {
    color: #e9f5ff;
    background: var(--blue-900);
    font-size: 13px;
}

.top-strip .container,
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.top-strip .container {
    min-height: 38px;
}

.contact-inline,
.hero-stats,
.check-list,
.product-meta,
.footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-inline a {
    color: #ffffff;
}

.navbar .container {
    min-height: 78px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.logo img {
    max-width: 180px;
    max-height: 48px;
    object-fit: contain;
}

.logo .logo-second {
    max-width: 140px;
    max-height: 42px;
    border-left: 1px solid var(--line);
    padding-left: 16px;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--blue-700);
}

.nav-links a.is-active {
    color: var(--blue-700);
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(6, 47, 85, .08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    min-height: auto;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    color: var(--ink);
}

.dropdown-menu a:hover {
    background: var(--soft);
    color: var(--orange-600);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #ffffff;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--blue-800);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.btn:hover,
.btn:focus {
    transform: translateY(-1px);
}

.btn-primary {
    color: #ffffff;
    background: var(--orange-600);
    border-color: var(--orange-600);
}

.btn-primary:hover,
.btn-primary:focus {
    color: #ffffff;
    background: var(--orange-700);
    border-color: var(--orange-700);
}

.btn-secondary {
    color: var(--blue-800);
    background: #ffffff;
    border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus {
    color: #ffffff;
    background: var(--blue-800);
    border-color: var(--blue-800);
}

.hero {
    position: relative;
    min-height: clamp(560px, 86vh, 720px);
    display: flex;
    align-items: center;
    color: #ffffff;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 47, 85, .94) 0%, rgba(6, 47, 85, .78) 46%, rgba(6, 47, 85, .24) 100%);
    z-index: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero > .container {
    position: relative;
    z-index: 2;
}

/* Hero Slider */
.hero-slider {
    position: relative;
}

.hero-slider .swiper-slide {
    height: auto;
}

.hero-slider .hero {
    min-height: clamp(500px, 78vh, 680px);
}

.hero-pagination {
    bottom: 24px !important;
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, .5);
    opacity: 1;
    transition: background .2s ease, transform .2s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--orange-600);
    transform: scale(1.2);
}

.hero-nav-btn {
    color: #ffffff;
    background: rgba(6, 47, 85, .45);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    z-index: 10;
    transition: background .2s ease;
}

.hero-nav-btn:hover {
    background: var(--orange-600);
}

.hero-nav-btn::after {
    font-size: 18px;
    font-weight: 900;
}

/* Hero Stats Bar */
.hero-stats-bar {
    background: var(--blue-900);
    padding: 0;
}

.hero-stats-bar .hero-stats {
    margin: 0;
    padding: 18px 0;
    justify-content: center;
    gap: 0;
}

.hero-stats-bar .hero-stats li {
    flex: 1;
    text-align: center;
    padding: 14px 20px;
    border: none;
    border-radius: 0;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.hero-stats-bar .hero-stats li:last-child {
    border-right: none;
}

.hero-stats-bar .hero-stats strong {
    color: var(--orange-600);
    font-size: 28px;
}

.hero-stats-bar .hero-stats span {
    color: #c8defc;
    font-size: 13px;
}

.hero-content {
    max-width: 720px;
    padding: 76px 0 98px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.eyebrow:before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: var(--orange-600);
}

.hero h1 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.hero p {
    max-width: 650px;
    margin: 0 0 28px;
    color: #e7f3ff;
    font-size: 17px;
    line-height: 1.7;
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-stats {
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 42px;
}

.hero-stats li {
    min-width: 148px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
}

.hero-stats strong {
    display: block;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
}

.hero-stats span {
    display: block;
    margin-top: 8px;
    color: #d8ebff;
    font-size: 13px;
}

.section {
    padding: 82px 0;
}

.section-soft {
    background: var(--soft);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.section-title {
    max-width: 720px;
}

.section-title span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--orange-600);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.section-title h2 {
    margin: 0;
    color: var(--blue-900);
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-title p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.grid {
    display: grid;
    gap: 22px;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 14px 32px rgba(6, 47, 85, .08);
}

.card-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--blue-100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.card-media img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform .25s ease;
}

.card:hover .card-media img {
    transform: scale(1.04);
}

.card-body {
    padding: 22px;
}

.card-body h3 {
    margin: 0 0 10px;
    color: var(--blue-900);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 900;
}

.card-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--orange-600);
    font-weight: 900;
}

.feature {
    padding: 26px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    margin-bottom: 18px;
    padding: 0 12px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--blue-800);
    font-size: 13px;
    font-weight: 900;
}

.feature:nth-child(2) .feature-badge,
.feature:nth-child(4) .feature-badge {
    background: var(--orange-600);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 34px;
    align-items: center;
}

.dark-panel {
    padding: 30px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--blue-900);
}

.dark-panel h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 24px;
}

.dark-panel p,
.dark-panel a {
    color: #e7f3ff;
}

.check-list {
    display: grid;
    align-items: start;
    gap: 12px;
    margin-top: 22px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
    line-height: 1.65;
}

.check-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--orange-600);
    box-shadow: 0 0 0 4px rgba(244, 123, 32, .15);
}

.dark-panel .check-list li {
    color: #e7f3ff;
}

.product-card .product-meta {
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.product-meta span {
    color: var(--steel);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-meta strong {
    color: var(--orange-600);
    font-size: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-auto-rows: 210px;
    gap: 12px;
}

.gallery-grid a {
    overflow: hidden;
    border-radius: 8px;
    background: var(--blue-100);
}

.gallery-grid a:first-child {
    grid-row: span 2;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============= Galeri (yeni) ============= */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(6, 47, 85, .04);
}

.gallery-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, transform .1s ease;
}

.gallery-chip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    padding: 1px 7px;
    border-radius: 999px;
    background: var(--blue-100);
    color: var(--blue-900);
    font-size: 11px;
    font-weight: 800;
}

.gallery-chip:hover {
    background: var(--blue-100);
    color: var(--blue-900);
}

.gallery-chip.is-active {
    background: var(--blue-900);
    color: #fff;
}

.gallery-chip.is-active span {
    background: var(--orange-600);
    color: #fff;
}

.gallery-masonry {
    column-count: 3;
    column-gap: 14px;
}

@media (max-width: 960px) {
    .gallery-masonry { column-count: 2; }
}
@media (max-width: 560px) {
    .gallery-masonry { column-count: 1; }
}

.gallery-tile {
    position: relative;
    margin: 0 0 14px;
    break-inside: avoid;
    border-radius: 12px;
    overflow: hidden;
    background: var(--blue-100);
    box-shadow: 0 8px 22px rgba(6, 47, 85, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(6, 47, 85, .15);
}

.gallery-tile a {
    display: block;
    position: relative;
    color: #fff;
    text-decoration: none;
}

.gallery-tile img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .35s ease;
}

.gallery-tile:hover img {
    transform: scale(1.04);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 6px;
    padding: 16px;
    background: linear-gradient(180deg, rgba(6, 47, 85, 0) 50%, rgba(6, 47, 85, .85) 100%);
    opacity: 0;
    transition: opacity .25s ease;
}

.gallery-tile:hover .gallery-overlay,
.gallery-tile:focus-within .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--orange-600);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.gallery-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .3);
}

.gallery-zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    color: var(--blue-900);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.empty-block {
    padding: 60px 20px;
    text-align: center;
    border: 1px dashed var(--line);
    border-radius: 12px;
    background: #fff;
}
.empty-block h3 { color: var(--blue-900); margin: 0 0 8px; }
.empty-block p { color: var(--muted); margin: 0; }

/* Lightbox */
.ye-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(6, 14, 28, .94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: ye-fade-in .2s ease;
}
@keyframes ye-fade-in { from { opacity: 0; } to { opacity: 1; } }
.ye-lightbox[hidden] { display: none; }
.ye-lightbox-inner {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 100%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ye-lightbox-swiper {
    width: 100%;
    height: 100%;
}
.ye-lightbox-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
}
.ye-lightbox-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}
.ye-lightbox-caption {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 8px 16px;
    background: rgba(0, 0, 0, .5);
    border-radius: 999px;
    backdrop-filter: blur(6px);
}
.ye-lightbox-swiper .swiper-button-prev,
.ye-lightbox-swiper .swiper-button-next {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: background .15s ease;
}
.ye-lightbox-swiper .swiper-button-prev:hover,
.ye-lightbox-swiper .swiper-button-next:hover {
    background: var(--orange-600);
}
.ye-lightbox-swiper .swiper-button-prev::after,
.ye-lightbox-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 900;
}
.ye-lightbox-swiper .swiper-pagination {
    color: #fff;
    font-weight: 700;
    bottom: 0;
}
.ye-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background .15s ease, transform .1s ease;
}
.ye-lightbox-close:hover {
    background: var(--orange-600);
    transform: scale(1.05);
}

.form-band {
    color: #ffffff;
    background: var(--blue-900);
}

.form-band .section-title h2,
.form-band .section-title p {
    color: #ffffff;
}

.lead-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.form-field {
    display: grid;
    gap: 7px;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    color: #e7f3ff;
    font-size: 13px;
    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 6px;
    padding: 12px 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
    font: inherit;
}

.form-field textarea {
    min-height: 118px;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, .68);
}

.form-field option {
    color: var(--ink);
}

.form-note {
    grid-column: 1 / -1;
    margin: 0;
    color: #cfe6ff;
    line-height: 1.6;
}

.alert {
    margin: 0 0 22px;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 800;
}

.alert-ok {
    color: #063d21;
    background: #d9f9e6;
}

.alert-no {
    color: #5c1709;
    background: #ffe5dc;
}

.site-footer {
    color: #d9eaff;
    background: #041f38;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr .8fr .9fr;
    gap: 28px;
    padding: 52px 0;
}

.footer-main h2,
.footer-main h3 {
    margin: 0 0 14px;
    color: #ffffff;
}

.footer-main p,
.footer-main a {
    color: #d9eaff;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 18px 0;
    color: #b8d3ee;
    font-size: 14px;
}

.page-hero {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    padding: 78px 0;
}

.page-hero h1 {
    max-width: 780px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 900;
}

.page-hero p {
    max-width: 720px;
    margin: 16px 0 0;
    color: #e7f3ff;
    font-size: 18px;
    line-height: 1.7;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: start;
}

.detail-media {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--blue-100);
}

.detail-media img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.detail-content {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.detail-content h2,
.detail-content h3,
.detail-content h4 {
    color: var(--blue-900);
    letter-spacing: 0;
}

.price-line {
    display: inline-flex;
    margin: 0 0 16px;
    padding: 10px 14px;
    border-radius: 6px;
    color: #ffffff;
    background: var(--orange-600);
    font-weight: 900;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 24px;
}

.faq-item h3 {
    margin: 0 0 10px;
    color: var(--blue-900);
}

.faq-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

/* Premium Corporate Pages */
.corporate-page-section {
    background: linear-gradient(180deg, var(--soft) 0%, var(--paper) 100%);
    padding: 80px 0;
}

.corporate-card {
    background: #ffffff;
    padding: 60px 70px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(4, 31, 56, 0.04), 0 1px 3px rgba(4, 31, 56, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.corporate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--blue-600), var(--orange-500));
}

.typography-rich {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.85;
}

.typography-rich h1, 
.typography-rich h2, 
.typography-rich h3, 
.typography-rich h4 {
    color: var(--blue-900);
    margin: 40px 0 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.typography-rich h2 {
    font-size: 28px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
}

.typography-rich h3 {
    font-size: 22px;
    color: var(--blue-800);
}

.typography-rich p {
    margin-bottom: 24px;
    color: rgba(4, 31, 56, 0.85);
}

.typography-rich ul, 
.typography-rich ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.typography-rich li {
    margin-bottom: 12px;
    color: rgba(4, 31, 56, 0.85);
    padding-left: 6px;
}

.typography-rich strong, 
.typography-rich b {
    color: var(--blue-900);
    font-weight: 700;
}

.typography-rich blockquote {
    margin: 30px 0;
    padding: 24px 30px;
    background: var(--soft);
    border-left: 4px solid var(--orange-500);
    font-size: 18px;
    font-style: italic;
    border-radius: 0 12px 12px 0;
}

/* ================= Project pages ================= */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.project-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    box-shadow: 0 16px 36px rgba(6, 47, 85, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(6, 47, 85, .14);
}

.project-card-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--blue-100);
}

.project-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.project-card:hover .project-card-media img {
    transform: scale(1.05);
}

.project-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--orange-600);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.project-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.project-card-body h3 {
    margin: 0;
    color: var(--blue-900);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 900;
}

.project-meta {
    list-style: none;
    margin: 0;
    padding: 14px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.project-meta li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.project-meta .meta-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.project-meta .meta-value {
    color: var(--blue-900);
    font-weight: 800;
    font-size: 14px;
}

.project-card-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

/* ----- Project detail ----- */
.project-hero {
    position: relative;
    color: #ffffff;
    padding: 90px 0 70px;
    background: linear-gradient(135deg, rgba(6, 47, 85, .92), rgba(13, 95, 165, .85)), var(--project-hero) center/cover no-repeat;
}

.project-hero h1 {
    margin: 12px 0 22px;
    color: #ffffff;
    font-size: clamp(32px, 4.2vw, 52px);
    line-height: 1.1;
    font-weight: 900;
    max-width: 880px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #c8defc;
    font-size: 14px;
    margin-bottom: 18px;
}

.breadcrumb a {
    color: #c8defc;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.project-hero-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.project-hero-meta li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #ffffff;
}

.project-hero-meta strong {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #ffd6b6;
    font-weight: 700;
}

.project-hero-meta span {
    font-size: 18px;
    font-weight: 800;
}

.project-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 36px;
    align-items: start;
}

.project-detail-figure {
    margin: 0 0 28px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--blue-100);
}

.project-detail-figure img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.project-detail-figure figcaption {
    padding: 12px 18px;
    background: var(--blue-900);
    color: #ffffff;
    font-weight: 800;
}

.project-detail-body {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.85;
    word-break: break-word;
}

.project-detail-body :where(p, ul, ol) {
    margin: 0 0 14px;
    color: var(--ink);
}

.project-detail-body :where(h1, h2, h3, h4) {
    color: var(--blue-900);
    margin: 24px 0 12px;
    line-height: 1.25;
    font-weight: 900;
}

.project-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 12px 0;
}

.project-detail-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.project-detail-body table td,
.project-detail-body table th {
    border: 1px solid var(--line);
    padding: 8px 10px;
    text-align: left;
}

.project-detail-cta {
    margin-top: 28px;
    padding: 28px;
    border-radius: 10px;
    background: var(--blue-100);
    border: 1px solid var(--line);
}

.project-detail-cta h3 {
    margin: 0 0 8px;
    color: var(--blue-900);
}

.project-detail-cta p {
    margin: 0 0 16px;
    color: var(--muted);
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.project-info-card {
    padding: 26px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 14px 32px rgba(6, 47, 85, .06);
}

.project-info-card + .project-info-card {
    margin-top: 22px;
}

.project-info-card h3 {
    margin: 0 0 16px;
    color: var(--blue-900);
    font-size: 18px;
    font-weight: 900;
}

.project-info-card dl {
    margin: 0;
    display: grid;
    grid-template-columns: 110px 1fr;
    row-gap: 10px;
    column-gap: 14px;
}

.project-info-card dt {
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.project-info-card dd {
    margin: 0;
    color: var(--blue-900);
    font-weight: 700;
}

.project-info-card-dark {
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    color: #ffffff;
    border-color: transparent;
}

.project-info-card-dark h3 {
    color: #ffffff;
}

.project-info-card-dark p {
    color: #d6e7fb;
    margin: 0 0 16px;
}

.contact-mini {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.contact-mini li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 14px;
    color: #e7f3ff;
}

.contact-mini li span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #ffd6b6;
}

.contact-mini a {
    color: #ffffff;
    font-weight: 800;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.related-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(6, 47, 85, .12);
}

.related-card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--blue-100);
}

.related-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-card-body {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.related-card-body span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--orange-600);
    font-weight: 800;
}

.related-card-body h4 {
    margin: 0;
    color: var(--blue-900);
    font-size: 15px;
    line-height: 1.35;
}

@media (max-width: 960px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
    .project-detail-layout {
        grid-template-columns: 1fr;
    }
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 540px) {
    .project-meta {
        grid-template-columns: 1fr 1fr;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= Project gallery (Swiper) ================= */
.project-card-count {
    position: absolute;
    bottom: 14px;
    right: 14px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(6, 47, 85, .8);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.project-gallery {
    margin: 0 0 28px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #0b1d34;
}

.project-gallery-main {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #06121f;
}

.project-gallery-main .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #06121f;
}

.project-gallery-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-gallery-main .swiper-button-prev,
.project-gallery-main .swiper-button-next {
    color: #ffffff;
    background: rgba(6, 47, 85, .55);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    transition: background .2s ease;
}

.project-gallery-main .swiper-button-prev:hover,
.project-gallery-main .swiper-button-next:hover {
    background: var(--orange-600);
}

.project-gallery-main .swiper-button-prev::after,
.project-gallery-main .swiper-button-next::after {
    font-size: 16px;
    font-weight: 900;
}

.project-gallery-main .swiper-pagination-bullet {
    background: #ffffff;
    opacity: .5;
}

.project-gallery-main .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--orange-600);
}

.project-gallery-thumbs {
    padding: 12px;
    background: rgba(255, 255, 255, .04);
}

.project-gallery-thumbs .swiper-slide {
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: .55;
    transition: opacity .2s ease, border-color .2s ease;
    background: #06121f;
}

.project-gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--orange-600);
}

@media (max-width: 640px) {
    .corporate-page-section {
        padding: 40px 0;
    }

    .corporate-card {
        padding: 30px 20px;
        border-radius: 12px;
    }
}

/* ==========================================================
   TEMİZ HEADER / NAVBAR / HERO / MOBİL DRAWER / SABİT İLETİŞİM
   Bu bölüm tek geçerli header-menü yapısıdır.
   ========================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 142px;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(180deg, rgba(4, 31, 56, .66) 0%, rgba(4, 31, 56, .34) 55%, rgba(4, 31, 56, 0) 100%);
}

.top-strip {
    color: #eaf6ff;
    background: rgba(4, 31, 56, .50);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.top-strip .container {
    min-height: 36px;
}

.navbar {
    background: transparent;
}

.navbar .container {
    width: min(1160px, calc(100% - 40px));
    max-width: 1160px;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 300px;
}

.logo img {
    width: auto;
    max-width: 170px;
    max-height: 54px;
    object-fit: contain;
}

.logo .logo-second {
    width: auto;
    max-width: 118px;
    max-height: 42px;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, .25);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
}

.nav-links > li {
    flex: 0 1 auto;
    min-width: 0;
}

.nav-links > li > a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 7px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: .32px;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .28);
}

.nav-links > li > a:hover,
.nav-links > li > a:focus,
.nav-links > li > a.is-active {
    color: var(--orange-600);
}

.nav-cta {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 230px;
    max-width: min(330px, 90vw);
    display: block;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(229, 237, 245, .9);
    border-radius: 12px;
    box-shadow: 0 18px 35px rgba(4, 31, 56, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    z-index: 1200;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a,
.dropdown-menu li a {
    display: block;
    min-height: auto;
    padding: 10px 16px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: none;
    letter-spacing: 0;
    white-space: normal;
    text-shadow: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
    color: var(--orange-600);
    background: var(--soft);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 14px;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 22px rgba(4, 31, 56, .16);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: #ffffff;
    transition: transform .25s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero,
.hero-slider .hero {
    min-height: clamp(620px, 100vh, 820px);
    padding-top: 118px;
    margin-top: 0;
    background-position: center top;
}

.hero-content {
    padding-top: 76px;
}

.page-hero,
.project-hero {
    padding-top: 150px;
}

@media (max-width: 1260px) {
    .navbar .container {
        width: min(100% - 28px, 1160px);
        gap: 8px;
    }

    .logo {
        max-width: 242px;
        gap: 8px;
    }

    .logo img {
        max-width: 145px;
        max-height: 48px;
    }

    .logo .logo-second {
        max-width: 92px;
        max-height: 36px;
        padding-left: 8px;
    }

    .nav-links > li > a {
        padding: 8px 5px;
        font-size: 11.5px;
        letter-spacing: .18px;
    }

    .nav-cta {
        padding: 9px 11px;
        font-size: 12px;
    }
}

@media (max-width: 1120px) {
    .nav-cta {
        display: none;
    }

    .nav-links > li > a {
        padding-inline: 6px;
        font-size: 12px;
    }
}

/* Mobil: soldan açılan sade drawer */
@media (max-width: 980px) {
    body {
        overflow-x: hidden;
        padding-bottom: 82px;
    }

    body:has(.nav-links.is-open) {
        overflow: hidden;
    }

    body:has(.nav-links.is-open)::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 1298;
        background: rgba(4, 31, 56, .58);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    .top-strip {
        display: none;
    }

    .site-header {
        z-index: 1400;
    }

    .site-header::after {
        height: 92px;
        background: linear-gradient(180deg, rgba(4, 31, 56, .72) 0%, rgba(4, 31, 56, .26) 70%, rgba(4, 31, 56, 0) 100%);
    }

    .navbar .container {
        width: min(100% - 24px, 1160px);
        min-height: 70px;
        padding: 10px 0;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        position: relative;
    }

    .logo {
        flex: 1 1 auto;
        max-width: calc(100% - 58px);
    }

    .logo img {
        max-width: 130px;
        max-height: 42px;
    }

    .logo .logo-second {
        max-width: 84px;
        max-height: 32px;
    }

    .menu-toggle {
        position: relative;
        right: auto;
        top: auto;
        display: inline-flex;
        flex: 0 0 44px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-left: auto;
        z-index: 1450;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: auto;
        bottom: auto;
        width: min(74vw, 286px);
        height: 100vh;
        max-height: none;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 7px;
        margin: 0;
        padding: 86px 15px 24px;
        background: #ffffff;
        border-radius: 0 22px 22px 0;
        border-right: 1px solid rgba(6, 47, 85, .08);
        box-shadow: 18px 0 45px rgba(4, 31, 56, .26);
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateX(-105%);
        transition: transform .32s cubic-bezier(.4, 0, .2, 1);
        z-index: 1399;
        white-space: normal;
        opacity: 1;
        visibility: visible;
        pointer-events: none;
    }

    .nav-links.is-open,
    .nav-links.active,
    .nav-links.show {
        transform: translateX(0);
        pointer-events: auto;
    }

    .nav-links::before {
        content: "Menü";
        display: block;
        margin: 0 0 10px;
        padding: 0 2px 13px;
        color: var(--blue-900);
        font-size: 21px;
        line-height: 1.2;
        font-weight: 900;
        border-bottom: 1px solid rgba(6, 47, 85, .10);
    }

    .nav-links::after {
        display: none;
    }

    .nav-links > li {
        width: 100%;
        flex: none;
    }

    .nav-links > li > a {
        width: 100%;
        min-height: 46px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 14px;
        border: 1px solid rgba(6, 47, 85, .08);
        border-radius: 13px;
        background: #f8fafc;
        color: var(--blue-900);
        font-size: 13.5px;
        font-weight: 800;
        text-transform: none;
        letter-spacing: 0;
        line-height: 1.2;
        white-space: normal;
        text-shadow: none;
        box-shadow: none;
    }

    .nav-links > li > a:hover,
    .nav-links > li > a:focus,
    .nav-links > li > a.is-active {
        color: #ffffff;
        background: var(--blue-800);
        border-color: var(--blue-800);
    }

    .dropdown-icon {
        margin-left: 8px;
        font-size: 10px;
        color: inherit;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        margin: 7px 0 2px;
        padding: 8px;
        border: 1px solid rgba(6, 47, 85, .08);
        border-radius: 14px;
        background: #eef5fb;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .has-dropdown:hover .dropdown-menu,
    .has-dropdown:focus-within .dropdown-menu {
        display: grid;
        gap: 6px;
    }

    .dropdown-menu li a,
    .dropdown-menu a {
        width: 100%;
        min-height: 38px;
        display: flex;
        align-items: center;
        padding: 0 12px;
        border: 0;
        border-radius: 10px;
        background: #ffffff;
        color: var(--ink);
        font-size: 12.5px;
        font-weight: 700;
        text-transform: none;
        letter-spacing: 0;
        box-shadow: none;
    }

    .dropdown-menu li a:hover,
    .dropdown-menu a:hover {
        background: var(--orange-600);
        color: #ffffff;
    }

    .nav-cta {
        display: none;
    }

    .hero,
    .hero-slider .hero {
        min-height: clamp(560px, 100vh, 760px);
        padding-top: 92px;
    }

    .hero-content {
        padding-top: 52px;
    }

    .page-hero,
    .project-hero {
        padding-top: 122px;
    }
}

@media (max-width: 640px) {
    .navbar .container {
        width: min(100% - 24px, 1160px);
    }

    .nav-links {
        width: min(78vw, 282px);
        padding: 82px 14px 22px;
        border-radius: 0 20px 20px 0;
    }

    .logo img {
        max-width: 124px;
        max-height: 38px;
    }

    .logo .logo-second {
        max-width: 76px;
        max-height: 30px;
        padding-left: 7px;
    }

    .hero,
    .hero-slider .hero {
        min-height: clamp(540px, 100vh, 720px);
        padding-top: 92px;
    }

    .hero-content {
        padding-top: 38px;
        padding-bottom: 54px;
    }

    .page-hero,
    .project-hero {
        padding-top: 122px;
    }
}

@media (max-width: 380px) {
    .nav-links {
        width: min(82vw, 270px);
        padding-inline: 12px;
    }

    .nav-links::before {
        font-size: 20px;
    }

    .nav-links > li > a {
        min-height: 44px;
        font-size: 13px;
        border-radius: 12px;
    }

    .logo img {
        max-width: 112px;
    }

    .logo .logo-second {
        max-width: 66px;
    }
}

/* Masaüstü sağ sabit WhatsApp / Telefon */
.desktop-floating-actions,
.mobile-quick-actions {
    display: none;
}

.desktop-floating-actions svg,
.mobile-quick-actions svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (min-width: 981px) {
    .desktop-floating-actions {
        position: fixed;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 990;
        display: grid;
        gap: 10px;
    }

    .desktop-floating-actions a {
        width: 52px;
        height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        color: #ffffff;
        box-shadow: 0 12px 28px rgba(4, 31, 56, .18);
        transition: transform .18s ease, box-shadow .18s ease;
    }

    .desktop-floating-actions a:hover {
        transform: translateX(-3px);
        box-shadow: 0 16px 34px rgba(4, 31, 56, .24);
    }

    .desktop-floating-actions .action-whatsapp {
        background: #25d366;
    }

    .desktop-floating-actions .action-phone {
        background: var(--blue-900);
    }
}

@media (max-width: 980px) {
    .mobile-quick-actions {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 999;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 9px;
        border-radius: 22px;
        background: rgba(255, 255, 255, .94);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 14px 40px rgba(4, 31, 56, .18);
    }

    .mobile-quick-actions a {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 16px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 900;
    }

    .mobile-whatsapp {
        background: #25d366;
    }

    .mobile-phone {
        background: var(--blue-900);
    }
}
/* =========================================================
   MOBİL KART / HİZMETLER OKUNABİLİRLİK DÜZELTMESİ
   Bu blok site.css dosyasının EN ALTINDA kalmalı
   ========================================================= */

@media (max-width: 768px) {
  /* Genel section boşlukları */
  .section {
    padding: 54px 0 !important;
  }

  .section-head {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
    margin-bottom: 26px !important;
  }

  .section-title {
    max-width: 100% !important;
  }

  .section-title span {
    font-size: 12px !important;
    letter-spacing: 0.6px !important;
  }

  .section-title h2 {
    font-size: 26px !important;
    line-height: 1.18 !important;
    letter-spacing: -0.4px !important;
  }

  .section-title p {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .section-actions {
    width: 100% !important;
  }

  .section-actions .btn,
  .section-actions a {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Tüm 3/4 kolon gridleri mobilde tek kolon */
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* Üstteki proje / satış / servis kutuları */
  .feature,
  .card.feature {
    padding: 22px !important;
    border-radius: 16px !important;
  }

  .feature-badge {
    min-width: auto !important;
    width: auto !important;
    height: auto !important;
    display: inline-flex !important;
    padding: 9px 14px !important;
    margin-bottom: 16px !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    line-height: 1 !important;
  }

  .feature h3,
  .card-body h3 {
    font-size: 22px !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .feature p,
  .card-body p {
    font-size: 15px !important;
    line-height: 1.65 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  /* Hizmet kartları */
  .card {
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 12px 28px rgba(6, 47, 85, 0.08) !important;
  }

  .card-media {
    aspect-ratio: 16 / 8 !important;
    padding: 0 !important;
    background: var(--blue-100) !important;
  }

  .card-media img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
  }

  .card-body {
    padding: 22px !important;
  }

  .card-link {
    margin-top: 18px !important;
    font-size: 15px !important;
    line-height: 1.3 !important;
  }
}

/* 480px altı daha kompakt */
@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, 1160px) !important;
  }

  .section {
    padding: 46px 0 !important;
  }

  .section-title h2 {
    font-size: 24px !important;
  }

  .grid {
    gap: 16px !important;
  }

  .feature,
  .card.feature {
    padding: 20px !important;
  }

  .feature h3,
  .card-body h3 {
    font-size: 21px !important;
  }

  .feature p,
  .card-body p {
    font-size: 14.5px !important;
  }

  .card-body {
    padding: 20px !important;
  }

  .card-media {
    aspect-ratio: 16 / 8.5 !important;
  }
}
/* =========================================================
   MOBİLDE FOOTER GİZLE + CTA GÖSTER
   ========================================================= */

.mobile-footer-cta {
  display: none;
}

@media (max-width: 980px) {
  .site-footer {
    display: none !important;
  }

  body {
    padding-bottom: 92px !important;
  }

  .mobile-footer-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1500;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow: 0 14px 38px rgba(4, 31, 56, 0.22);
  }

  .mobile-footer-cta a {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border-radius: 17px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
  }

  .mobile-footer-cta svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex: 0 0 auto;
  }

  .mobile-footer-cta .cta-whatsapp {
    background: #25d366;
  }

  .mobile-footer-cta .cta-phone {
    background: var(--blue-900);
  }
}

@media (max-width: 380px) {
  .mobile-footer-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 8px;
    gap: 8px;
    border-radius: 20px;
  }

  .mobile-footer-cta a {
    min-height: 48px;
    font-size: 13px;
    border-radius: 15px;
  }
}
/* =========================================================
   MODERN FOOTER TASARIMI
   ========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    color: #d9eaff;
    background:
        radial-gradient(circle at 10% 10%, rgba(13, 95, 165, .26), transparent 34%),
        linear-gradient(135deg, #03182b 0%, #062f55 100%);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: .38;
}

.footer-modern {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.35fr .75fr 1fr;
    gap: 42px;
    padding: 62px 0 56px;
}

.footer-brand h2 {
    max-width: 520px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(24px, 2.3vw, 34px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -.4px;
}

.footer-brand p {
    max-width: 520px;
    margin: 0;
    color: #cfe2f6;
    font-size: 15px;
    line-height: 1.85;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255,255,255,.08);
    font-size: 12px;
    font-weight: 800;
}

.footer-column h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
}

.footer-links {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d9eaff;
    font-size: 15px;
    line-height: 1.4;
    transition: color .2s ease, transform .2s ease;
}

.footer-links a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--orange-600);
    opacity: .85;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact {
    display: grid;
    align-content: start;
}

.footer-contact-item {
    display: grid;
    gap: 4px;
    margin-bottom: 10px;
    padding: 13px 15px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 15px;
    background: rgba(255,255,255,.07);
    color: #ffffff;
}

.footer-contact-item span {
    color: #9fc3e8;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer-contact-item strong {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 18px 0;
    background: rgba(0,0,0,.12);
    color: #b8d3ee;
    font-size: 13px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-credit {
    color: #8fb5da;
}

/* Masaüstü sağ sabit ikon */
.desktop-floating-actions,
.mobile-footer-cta {
    display: none;
}

@media (min-width: 981px) {
    .desktop-floating-actions {
        position: fixed;
        right: 20px;
        top: 50%;
        z-index: 1200;
        display: grid;
        gap: 12px;
        transform: translateY(-50%);
    }

    .desktop-floating-actions a {
        width: 54px;
        height: 54px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        color: #ffffff;
        box-shadow: 0 12px 28px rgba(4, 31, 56, 0.20);
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .desktop-floating-actions a:hover {
        transform: translateX(-4px);
        box-shadow: 0 16px 34px rgba(4, 31, 56, 0.28);
    }

    .desktop-floating-actions svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }

    .action-whatsapp {
        background: #25d366;
    }

    .action-phone {
        background: var(--blue-900);
    }
}

/* Mobilde footer gizle, sadece CTA göster */
@media (max-width: 980px) {
    .site-footer {
        display: none !important;
    }

    .mobile-quick-actions {
        display: none !important;
    }

    body {
        padding-bottom: 96px !important;
    }

    .mobile-footer-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1600;

        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;

        padding: 10px;
        border: 1px solid rgba(6, 47, 85, 0.08);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        box-shadow: 0 16px 42px rgba(4, 31, 56, 0.24);
    }

    .mobile-footer-cta a {
        min-height: 54px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        border-radius: 18px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 900;
        line-height: 1;
        text-align: center;
    }

    .cta-whatsapp {
        background: #25d366;
    }

    .cta-phone {
        background: var(--blue-900);
    }
}

@media (max-width: 380px) {
    .mobile-footer-cta {
        left: 9px;
        right: 9px;
        bottom: 9px;
        padding: 8px;
        gap: 8px;
        border-radius: 20px;
    }

    .mobile-footer-cta a {
        min-height: 50px;
        font-size: 13px;
        border-radius: 16px;
    }
}
/* Footer logo alanı */
.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    max-width: 100%;
    margin-bottom: 22px;
}

.footer-logo-wrap img {
    width: auto;
    max-width: 210px;
    max-height: 68px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-wrap .footer-logo-second {
    max-width: 150px;
    max-height: 56px;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, .20);
}

/* Logo zaten beyaz/renkli ise filter kapat */
.footer-logo-wrap.no-filter img {
    filter: none;
}

@media (max-width: 980px) {
    .footer-logo-wrap img {
        max-width: 170px;
        max-height: 56px;
    }

    .footer-logo-wrap .footer-logo-second {
        max-width: 120px;
        max-height: 46px;
    }
}
/* =========================================================
   FOOTER LOGO DÜZELTME + MODERN FOOTER + CTA FINAL
   Bu blok site.css dosyasının EN ALTINDA kalmalı
   ========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    color: #d9eaff;
    background:
        radial-gradient(circle at 10% 10%, rgba(13, 95, 165, .26), transparent 34%),
        linear-gradient(135deg, #03182b 0%, #062f55 100%);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: .38;
}

.footer-modern {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.35fr .75fr 1fr;
    gap: 42px;
    padding: 62px 0 56px;
}

.footer-brand {
    min-width: 0;
}

.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    max-width: 100%;
    margin-bottom: 22px;
}

.footer-logo-wrap img {
    width: auto;
    max-width: 210px;
    max-height: 68px;
    object-fit: contain;
}

.footer-logo-wrap:not(.no-filter) img {
    filter: brightness(0) invert(1);
}

.footer-logo-wrap .footer-logo-second {
    max-width: 150px;
    max-height: 56px;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, .20);
}

.footer-brand p {
    max-width: 520px;
    margin: 0;
    color: #cfe2f6;
    font-size: 15px;
    line-height: 1.85;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255,255,255,.08);
    font-size: 12px;
    font-weight: 800;
}

.footer-column h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
}

.footer-links {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d9eaff;
    font-size: 15px;
    line-height: 1.4;
    transition: color .2s ease, transform .2s ease;
}

.footer-links a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--orange-600);
    opacity: .85;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact {
    display: grid;
    align-content: start;
}

.footer-contact-item {
    display: grid;
    gap: 4px;
    margin-bottom: 10px;
    padding: 13px 15px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 15px;
    background: rgba(255,255,255,.07);
    color: #ffffff;
}

.footer-contact-item span {
    color: #9fc3e8;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer-contact-item strong {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 18px 0;
    background: rgba(0,0,0,.12);
    color: #b8d3ee;
    font-size: 13px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-credit {
    color: #8fb5da;
}

.desktop-floating-actions,
.mobile-footer-cta,
.mobile-quick-actions {
    display: none;
}

@media (min-width: 981px) {
    .desktop-floating-actions {
        position: fixed;
        right: 20px;
        top: 50%;
        z-index: 1200;
        display: grid;
        gap: 12px;
        transform: translateY(-50%);
    }

    .desktop-floating-actions a {
        width: 54px;
        height: 54px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        color: #ffffff;
        box-shadow: 0 12px 28px rgba(4, 31, 56, 0.20);
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .desktop-floating-actions a:hover {
        transform: translateX(-4px);
        box-shadow: 0 16px 34px rgba(4, 31, 56, 0.28);
    }

    .desktop-floating-actions svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }

    .action-whatsapp {
        background: #25d366;
    }

    .action-phone {
        background: var(--blue-900);
    }
}

@media (max-width: 980px) {
    .site-footer {
        display: none !important;
    }

    .mobile-quick-actions {
        display: none !important;
    }

    body {
        padding-bottom: 96px !important;
    }

    .mobile-footer-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1600;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px;
        border: 1px solid rgba(6, 47, 85, 0.08);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 16px 42px rgba(4, 31, 56, 0.24);
    }

    .mobile-footer-cta a {
        min-height: 54px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 18px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 900;
        line-height: 1;
        text-align: center;
    }

    .cta-whatsapp {
        background: #25d366;
    }

    .cta-phone {
        background: var(--blue-900);
    }
}

@media (max-width: 380px) {
    .mobile-footer-cta {
        left: 9px;
        right: 9px;
        bottom: 9px;
        padding: 8px;
        gap: 8px;
        border-radius: 20px;
    }

    .mobile-footer-cta a {
        min-height: 50px;
        font-size: 13px;
        border-radius: 16px;
    }
}
