/* Vox Reklam — Marka Renkleri (Logo Paleti) */
:root {
    --vx-navy: #0B1F3A;
    --vx-navy-mid: #102A43;
    --vx-navy-deep: #07162B;
    --vx-cyan: #00B8C4;
    --vx-cyan-light: #3EE7F3;
    --vx-cyan-bright: #2DEBFF;
    --vx-cyan-dark: #009AA5;
    --vx-gradient: linear-gradient(135deg, #3EE7F3 0%, #00B8C4 45%, #00A8C2 100%);
    --vx-gradient-soft: linear-gradient(135deg, rgba(62,231,243,0.15) 0%, rgba(0,184,196,0.08) 100%);
    --vx-white: #FFFFFF;
    --vx-bg: #F4F8FB;
    --vx-bg-muted: #E8F4F6;
    --vx-text: #1E3A52;
    --vx-text-muted: #5A7184;
    --vx-border: #D4E4EC;
    --vx-font: 'Barlow', system-ui, sans-serif;
    --vx-font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
    --vx-font-nav: 'Plus Jakarta Sans', system-ui, sans-serif;
    --vx-font-display: 'Barlow Condensed', system-ui, sans-serif;
    --vx-radius: 10px;
    --vx-radius-lg: 16px;
    --vx-shadow: 0 4px 20px rgba(7, 22, 43, 0.06);
    --vx-shadow-md: 0 12px 40px rgba(7, 22, 43, 0.12);
    --vx-shadow-glow: 0 8px 32px rgba(0, 184, 196, 0.25);
    --vx-header-h: 88px;
}

body {
    font-family: var(--vx-font);
    color: var(--vx-text);
    background: var(--vx-white);
    -webkit-font-smoothing: antialiased;
}

body.vx-lock { overflow: hidden; }

/* Topbar */
.vx-topbar {
    background: var(--vx-navy-deep);
    color: rgba(255,255,255,0.92);
    font-size: 0.875rem;
    padding: 10px 0;
    position: relative;
}
.vx-topbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--vx-gradient);
}
.vx-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.vx-topbar-loc {
    color: rgba(255,255,255,0.78);
    font-size: 0.8125rem;
}
.vx-topbar i { color: var(--vx-cyan-light); margin-right: 6px; font-size: 0.8rem; }
.vx-topbar-contacts {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.vx-topbar-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}
.vx-topbar-contact:hover { color: var(--vx-cyan-light); }
.vx-topbar-wa { font-weight: 600; }
.vx-topbar-wa:hover { color: #25d366; }
.vx-topbar-email { font-size: 0.8125rem; font-weight: 500; color: rgba(255,255,255,0.95); }

/* Header */
.vx-header {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--vx-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.25s;
}
.vx-header.is-scrolled {
    box-shadow: var(--vx-shadow-md);
    border-bottom-color: transparent;
}
.vx-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--vx-header-h);
    gap: 1.25rem;
}
.vx-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}
.vx-logo-img {
    height: 88px;
    width: auto;
    max-width: 280px;
    display: block;
    object-fit: contain;
}
.vx-footer-brand img {
    height: 72px;
    width: auto;
    max-width: 240px;
    display: block;
    object-fit: contain;
}

.vx-nav {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}
.vx-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.95rem;
    font-family: var(--vx-font-nav);
    font-size: 0.96875rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--vx-navy);
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: var(--vx-radius);
    transition: color 0.2s, background 0.2s;
}
.vx-nav-link.is-active { font-weight: 700; }
.vx-nav-link i { font-size: 0.6rem; opacity: 0.55; transition: transform 0.2s; }
.vx-nav-link:hover,
.vx-nav-link.is-active {
    color: var(--vx-cyan-dark);
    background: var(--vx-gradient-soft);
}
.vx-nav-item.is-open .vx-nav-link i { transform: rotate(180deg); }

.vx-nav-item { position: relative; }
.vx-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: var(--vx-white);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-lg);
    box-shadow: var(--vx-shadow-md);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}
.vx-nav-item.is-open .vx-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.vx-dropdown a {
    display: block;
    padding: 0.6rem 0.9rem;
    font-family: var(--vx-font-nav);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--vx-text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.15s;
}
.vx-dropdown a:hover,
.vx-dropdown a.is-active {
    background: var(--vx-gradient-soft);
    color: var(--vx-cyan-dark);
}

.vx-dropdown-wide {
    min-width: 520px;
    padding: 0;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    overflow: hidden;
}
.vx-nav-item.is-open .vx-dropdown-wide {
    transform: translateX(-50%) translateY(0);
}
.vx-dropdown-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.35rem;
    border-bottom: 1px solid var(--vx-border);
    background: linear-gradient(135deg, var(--vx-navy-deep) 0%, var(--vx-navy-mid) 100%);
}
.vx-dropdown-head strong {
    font-family: var(--vx-font-head);
    font-size: 0.975rem;
    color: #fff;
    display: block;
}
.vx-dropdown-head p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.65);
    margin: 0.2rem 0 0;
}
.vx-dropdown-head .vx-link-arrow { color: var(--vx-cyan-light); }
.vx-dropdown-head .vx-link-arrow:hover { color: #fff; }
.vx-dropdown-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0.85rem;
    gap: 0;
    background: var(--vx-white);
}
.vx-dropdown-cols ul { list-style: none; margin: 0; padding: 0; }
.vx-dropdown-cols a {
    padding: 0.55rem 0.9rem;
    font-size: 0.875rem;
}

.vx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--vx-font);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--vx-navy-deep);
    background: var(--vx-gradient);
    border: none;
    border-radius: var(--vx-radius);
    text-decoration: none;
    cursor: pointer;
    box-shadow: var(--vx-shadow-glow);
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.vx-btn:hover {
    color: var(--vx-navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 184, 196, 0.35);
    filter: brightness(1.05);
}
.vx-btn-lg { padding: 0.9rem 1.85rem; font-size: 1rem; }
.vx-btn-sm { padding: 0.6rem 1.15rem; font-size: 0.875rem; }
.vx-btn-block { width: 100%; }
.vx-btn-outline {
    background: transparent;
    color: var(--vx-navy);
    border: 2px solid var(--vx-border);
    box-shadow: none;
}
.vx-btn-outline:hover {
    border-color: var(--vx-cyan);
    color: var(--vx-cyan-dark);
    background: var(--vx-gradient-soft);
    box-shadow: none;
    transform: translateY(-2px);
}
.vx-btn-outline-light {
    background: transparent;
    color: var(--vx-white);
    border: 2px solid rgba(255,255,255,0.45);
    box-shadow: none;
}
.vx-btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: var(--vx-cyan-light);
    box-shadow: none;
}
.vx-btn-light {
    background: var(--vx-white);
    color: var(--vx-navy);
    box-shadow: var(--vx-shadow);
}
.vx-btn-light:hover {
    background: var(--vx-cyan-light);
    color: var(--vx-navy-deep);
}

/* Teklif Al — header CTA */
.vx-btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 1.4rem;
    font-family: var(--vx-font-nav);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
    color: var(--vx-navy-deep);
    background: var(--vx-gradient);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0, 184, 196, 0.4);
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    white-space: nowrap;
}
.vx-btn-cta i { font-size: 0.875rem; color: var(--vx-navy-deep); }
.vx-btn-cta:hover {
    color: var(--vx-navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 184, 196, 0.5);
    filter: brightness(1.06);
}
.vx-btn-cta-block { width: 100%; }
.vx-btn-cta-lg { padding: 0.9rem 1.75rem; font-size: 1rem; }
.vx-btn-cta-light {
    background: var(--vx-gradient);
    margin-top: 1rem;
    color: var(--vx-navy-deep);
}
.vx-btn-cta-light:hover { color: var(--vx-navy-deep); }

.vx-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 11px;
    background: var(--vx-gradient-soft);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius);
    cursor: pointer;
}
.vx-burger span {
    display: block;
    height: 2.5px;
    background: var(--vx-navy);
    border-radius: 2px;
}

/* Mobil menü — tam ekran */
.vx-mmenu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--vx-navy-deep);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}
.vx-mmenu.is-open {
    visibility: visible;
    opacity: 1;
}
.vx-mmenu-sheet {
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 1.25rem 1.5rem;
}
.vx-mmenu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vx-mmenu-logo img {
    height: 58px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}
.vx-mmenu-close {
    width: 44px; height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1.15rem;
    cursor: pointer;
}
.vx-mmenu-promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding: 1rem 1.15rem;
    background: var(--vx-gradient);
    border-radius: 12px;
    text-decoration: none;
    color: var(--vx-navy-deep);
    flex-shrink: 0;
    order: 10;
}
.vx-mmenu-promo span {
    font-size: 0.8125rem;
    font-weight: 500;
    opacity: 0.85;
}
.vx-mmenu-promo strong {
    font-family: var(--vx-font-nav);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: none;
    white-space: nowrap;
}
.vx-mmenu-promo strong i { font-size: 0.75rem; margin-left: 4px; }
.vx-mmenu-nav {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.vx-mmenu-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    font-family: var(--vx-font-nav);
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: none;
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.vx-mmenu-item:hover { color: var(--vx-cyan-light); }
.vx-mmenu-details { border-bottom: 1px solid rgba(255,255,255,0.07); }
.vx-mmenu-summary {
    list-style: none;
    cursor: pointer;
    justify-content: space-between;
    font-weight: 600;
}
.vx-mmenu-summary::-webkit-details-marker { display: none; }
.vx-mmenu-summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--vx-cyan-light);
    transition: transform 0.25s;
}
.vx-mmenu-details[open] .vx-mmenu-summary::after {
    content: '−';
}
.vx-mmenu-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 0.75rem;
    padding: 0 0 1rem;
}
.vx-mmenu-subgrid a {
    font-family: var(--vx-font-nav);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    padding: 0.35rem 0;
    line-height: 1.35;
}
.vx-mmenu-subgrid a:hover { color: var(--vx-cyan-light); }
.vx-mmenu-subgrid a.is-all {
    grid-column: 1 / -1;
    color: var(--vx-cyan-light);
    font-weight: 700;
    margin-top: 0.25rem;
}
.vx-mmenu-sublist {
    display: flex;
    flex-direction: column;
    padding: 0 0 0.75rem;
    gap: 0;
}
.vx-mmenu-sublist a {
    display: block;
    padding: 0.55rem 0;
    font-family: var(--vx-font-nav);
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    line-height: 1.35;
}
.vx-mmenu-sublist a:hover { color: var(--vx-cyan-light); }
.vx-mmenu-sublist a.is-all {
    color: var(--vx-cyan-light);
    font-weight: 700;
    border-bottom: none;
    margin-top: 0.35rem;
}
.vx-mmenu-sublist-services a { font-size: 0.875rem; }
.vx-mmenu-cta-link {
    color: var(--vx-cyan-light) !important;
    font-weight: 700 !important;
}
.vx-mmenu-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.vx-mmenu-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--vx-font-nav);
    color: #fff;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.3;
    padding: 0.55rem 0.65rem;
    background: rgba(255,255,255,0.06);
    border-radius: var(--vx-radius);
    border: 1px solid rgba(255,255,255,0.1);
}
.vx-mmenu-contact a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--vx-cyan-light);
}
.vx-mmenu-contact a i { color: var(--vx-cyan-light); width: 16px; text-align: center; flex-shrink: 0; font-size: 0.85rem; }

/* Slider */
.vx-slider {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--vx-navy-deep);
}
.vx-slider-track { position: absolute; inset: 0; }
.vx-slider-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1s ease, transform 8s ease;
}
.vx-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vx-slider-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}
.vx-slider-shade {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(90deg, rgba(7,22,43,0.88) 0%, rgba(11,31,58,0.72) 42%, rgba(16,42,67,0.35) 100%);
}
.vx-slider-content {
    position: relative; z-index: 3;
    padding: 5rem 0 4.5rem;
    width: 100%;
}
.vx-slider-panel {
    display: none;
}
.vx-slider-panel.is-active {
    display: block;
    animation: vxSlideCopyIn 0.55s ease;
}
@keyframes vxSlideCopyIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}
.vx-slider-copy { max-width: 640px; }
.vx-slider-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--vx-cyan-light);
    margin-bottom: 1rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid rgba(62,231,243,0.35);
    border-radius: 999px;
    background: rgba(62,231,243,0.1);
}
.vx-slider-title {
    font-family: var(--vx-font-display);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.02;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 1.1rem;
}
.vx-slider-title em {
    font-style: normal;
    color: var(--vx-cyan-light);
}
.vx-slider-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    margin-bottom: 1.85rem;
    max-width: 520px;
}
.vx-slider-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.vx-slider-actions .vx-btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.06);
    box-shadow: none;
}
.vx-slider-actions .vx-btn-outline:hover {
    background: rgba(255,255,255,0.14);
    border-color: #fff;
    color: #fff;
}
.vx-slider-dots {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.vx-slider-dots button {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.35);
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}
.vx-slider-dots button.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--vx-cyan-light);
}

.vx-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 48px; height: 48px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    background: rgba(7,22,43,0.45);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    backdrop-filter: blur(6px);
}
.vx-slider-arrow:hover {
    background: var(--vx-cyan);
    border-color: var(--vx-cyan);
    color: var(--vx-navy-deep);
}
.vx-slider-prev { left: 1.25rem; }
.vx-slider-next { right: 1.25rem; }

/* Sections */
.vx-section { padding: 5rem 0; }
.vx-section-muted {
    background: var(--vx-bg);
    position: relative;
}
.vx-section-muted::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--vx-gradient);
}
.vx-section-head {
    margin-bottom: 2.75rem;
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.vx-section-head h2 {
    font-family: var(--vx-font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--vx-navy);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.vx-section-head h2::after {
    content: '';
    display: block;
    width: 64px;
    height: 4px;
    background: var(--vx-gradient);
    border-radius: 2px;
    margin: 0.75rem auto 0;
}
.vx-section-head p { color: var(--vx-text-muted); margin: 0; font-size: 1.0625rem; }

.vx-card {
    display: block;
    background: var(--vx-white);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}
.vx-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--vx-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}
.vx-card:hover {
    box-shadow: var(--vx-shadow-md);
    transform: translateY(-6px);
    border-color: rgba(0,184,196,0.35);
}
.vx-card:hover::after { transform: scaleX(1); }
.vx-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--vx-bg-muted);
    position: relative;
}
.vx-card-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(7,22,43,0.35) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.vx-card:hover .vx-card-img::after { opacity: 1; }
.vx-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.vx-card:hover .vx-card-img img { transform: scale(1.08); }
.vx-card-body { padding: 1.25rem 1.35rem 1.5rem; }
.vx-card-body h3 {
    font-family: var(--vx-font-head);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--vx-navy);
    margin-bottom: 0.45rem;
}
.vx-card-body span {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--vx-cyan-dark);
    letter-spacing: 0.02em;
}
.vx-card-body span i {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.2s;
}
.vx-card:hover .vx-card-body span i { transform: translateX(4px); }

.vx-link-arrow {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--vx-cyan-dark);
    text-decoration: none;
}
.vx-link-arrow:hover { color: var(--vx-cyan); }

/* Blog — ana sayfa kartları */
.vx-section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: none;
    text-align: left;
}
.vx-section-head-row h2::after { margin-left: 0; }
.vx-blog-tile {
    background: var(--vx-white);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-lg);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.vx-blog-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--vx-shadow-md);
    border-color: rgba(0, 168, 196, 0.25);
}
.vx-blog-tile-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none !important;
    color: inherit;
}
.vx-blog-tile-link:hover,
.vx-blog-tile-link:focus {
    text-decoration: none !important;
    color: inherit;
}
.vx-blog-tile-media {
    display: block;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--vx-bg-muted);
}
.vx-blog-tile-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.vx-blog-tile:hover .vx-blog-tile-media img { transform: scale(1.06); }
.vx-blog-tile-date {
    position: absolute;
    left: 1rem; bottom: 1rem;
    padding: 0.35rem 0.75rem;
    background: rgba(15, 35, 55, 0.88);
    color: var(--vx-cyan-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}
.vx-blog-tile-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.35rem 1.4rem 1.35rem;
}
.vx-blog-tile-title,
.vx-blog-tile-body h2,
.vx-blog-tile-body h3 {
    font-family: var(--vx-font-head);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 0.65rem;
    color: var(--vx-navy);
    transition: color 0.2s;
}
.vx-blog-tile:hover .vx-blog-tile-title,
.vx-blog-tile:hover .vx-blog-tile-body h2,
.vx-blog-tile:hover .vx-blog-tile-body h3 {
    color: var(--vx-cyan-dark);
}
.vx-blog-tile-excerpt,
.vx-blog-tile-body p {
    color: var(--vx-text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0 0 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vx-blog-tile-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--vx-cyan-dark);
    letter-spacing: 0.02em;
    margin-top: auto;
}
.vx-blog-tile-more i {
    font-size: 0.7rem;
    transition: transform 0.2s;
}
.vx-blog-tile:hover .vx-blog-tile-more i { transform: translateX(4px); }

/* Blog listesi sayfalama */
.vx-blog-pagination {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--vx-border);
}
.vx-blog-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.vx-blog-page-num,
.vx-blog-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.85rem;
    border-radius: var(--vx-radius);
    border: 1px solid var(--vx-border);
    background: var(--vx-white);
    color: var(--vx-navy);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.vx-blog-page-num:hover,
.vx-blog-page-btn:hover {
    border-color: var(--vx-cyan-dark);
    color: var(--vx-cyan-dark);
    text-decoration: none !important;
}
.vx-blog-page-num.is-active {
    background: var(--vx-navy);
    border-color: var(--vx-navy);
    color: #fff;
}

/* Blog detay */
.vx-blog-article {
    background: var(--vx-white);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-lg);
    overflow: hidden;
    box-shadow: var(--vx-shadow);
}
.vx-blog-article-content {
    padding: 1.75rem 1.85rem 1.5rem;
}
.vx-blog-article-content a {
    color: var(--vx-cyan-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 154, 165, 0.25);
}
.vx-blog-article-content a:hover {
    color: var(--vx-navy);
    border-bottom-color: var(--vx-navy);
}
.vx-blog-article-cta {
    margin: 0 1.85rem 1.85rem;
    padding: 1.25rem 1.35rem;
    background: var(--vx-bg-muted);
    border-radius: var(--vx-radius);
    border-left: 4px solid var(--vx-cyan-dark);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.vx-blog-article-cta p {
    margin: 0;
    color: var(--vx-text);
    font-weight: 500;
    font-size: 0.9375rem;
}

/* Eski blog kart (iç sayfalar) */
.vx-blog-card {
    display: flex;
    gap: 0;
    background: var(--vx-white);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-lg);
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
}
.vx-blog-card:hover {
    box-shadow: var(--vx-shadow-md);
    transform: translateY(-4px);
}
.vx-blog-img {
    flex: 0 0 180px;
    background: var(--vx-bg-muted);
    position: relative;
}
.vx-blog-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, transparent, rgba(11,31,58,0.05));
}
.vx-blog-img img { width: 100%; height: 100%; object-fit: cover; min-height: 160px; }
.vx-blog-body {
    padding: 1.35rem 1.35rem 1.35rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.vx-blog-body time {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--vx-cyan-dark);
    letter-spacing: 0.04em;
}
.vx-blog-body h3 {
    font-family: var(--vx-font-head);
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0.4rem 0 0.85rem;
    line-height: 1.4;
}
.vx-blog-body h3 a { color: var(--vx-navy); text-decoration: none; }
.vx-blog-body h3 a:hover { color: var(--vx-cyan-dark); }

/* Footer üstü teklif bandı */
.vx-teklif-band {
    padding: 0 0 3.5rem;
    margin-top: 1rem;
    background: linear-gradient(180deg, var(--vx-bg) 0%, var(--vx-white) 100%);
}
.vx-teklif-card {
    position: relative;
    overflow: hidden;
    padding: 2.25rem 2.5rem;
    background: linear-gradient(135deg, var(--vx-navy-deep) 0%, var(--vx-navy-mid) 55%, #0d3552 100%);
    border-radius: var(--vx-radius-lg);
    border: 1px solid rgba(62, 231, 243, 0.18);
    box-shadow: var(--vx-shadow-md);
}
.vx-teklif-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--vx-gradient);
}
.vx-teklif-glow {
    position: absolute;
    top: -40%;
    right: -8%;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(62, 231, 243, 0.14) 0%, transparent 68%);
    pointer-events: none;
}
.vx-teklif-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2.5rem 3rem;
}
.vx-teklif-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: 0.85rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--vx-cyan-light);
    background: rgba(62, 231, 243, 0.1);
    border: 1px solid rgba(62, 231, 243, 0.22);
    border-radius: 999px;
}
.vx-teklif-badge i { font-size: 0.625rem; opacity: 0.9; }
.vx-teklif-main h2 {
    font-family: var(--vx-font-head);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 0.65rem;
    line-height: 1.25;
    max-width: 34rem;
}
.vx-teklif-main p {
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 1.15rem;
    line-height: 1.65;
    max-width: 36rem;
    font-size: 0.9375rem;
}
.vx-teklif-perks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}
.vx-teklif-perks li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}
.vx-teklif-perks i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    font-size: 0.5rem;
    color: var(--vx-navy-deep);
    background: var(--vx-gradient);
    flex-shrink: 0;
}
.vx-teklif-panel {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-width: min(100%, 280px);
}
.vx-teklif-primary {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
}
.vx-teklif-email {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--vx-radius);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.vx-teklif-email:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(62, 231, 243, 0.35);
    transform: translateY(-1px);
}
.vx-teklif-email-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--vx-radius);
    background: rgba(62, 231, 243, 0.12);
    color: var(--vx-cyan-light);
    flex-shrink: 0;
}
.vx-teklif-email-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.vx-teklif-email-text small {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}
.vx-teklif-email-text strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    word-break: break-all;
    line-height: 1.35;
}
.vx-teklif-email-arrow {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
}
.vx-teklif-email:hover .vx-teklif-email-arrow {
    color: var(--vx-cyan-light);
    transform: translateX(3px);
}

.vx-semt-hizmet-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.35rem 1rem;
}
.vx-semt-hizmet-list a {
    color: var(--vx-cyan-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
}
.vx-semt-hizmet-list a:hover { text-decoration: underline; }

/* Semt blog iç linkleri (hizmet sayfası) */
.vx-semt-links {
    padding: 1.35rem 1.5rem;
    background: var(--vx-bg);
    border-radius: var(--vx-radius);
    border: 1px solid var(--vx-border);
}
.vx-semt-links-title {
    font-family: var(--vx-font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--vx-navy);
    margin: 0 0 0.85rem;
}
.vx-semt-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.5rem 1rem;
}
.vx-semt-links-list a {
    font-size: 0.875rem;
    color: var(--vx-cyan-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.vx-semt-links-list a::before {
    content: '→';
    color: var(--vx-cyan);
    font-weight: 700;
}
.vx-semt-links-list a:hover { color: var(--vx-navy); text-decoration: underline; }

.vx-blog-ulasin { padding-top: 0; }
/* CTA */
.vx-cta {
    padding: 4rem 0 5rem;
    background: var(--vx-bg);
}
.vx-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 2.5rem 2.75rem;
    background: linear-gradient(135deg, var(--vx-navy-deep) 0%, var(--vx-navy-mid) 100%);
    border-radius: var(--vx-radius-lg);
    border: 1px solid rgba(62,231,243,0.2);
    position: relative;
    overflow: hidden;
}
.vx-cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--vx-gradient);
}
.vx-cta-content { max-width: 520px; position: relative; z-index: 1; }
.vx-cta-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vx-cyan-light);
    margin-bottom: 0.65rem;
}
.vx-cta-content h2 {
    font-family: var(--vx-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}
.vx-cta-content p {
    color: rgba(255,255,255,0.68);
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
}
.vx-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    position: relative;
    z-index: 1;
}
.vx-cta-call {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding-left: 0.25rem;
}
.vx-cta-call small {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.vx-cta-call strong {
    font-family: var(--vx-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--vx-cyan-light);
    letter-spacing: 0.02em;
}
.vx-cta-call:hover strong { color: #fff; }
.vx-cta-email strong { color: var(--vx-cyan-light); font-size: 1.05rem; word-break: break-all; }
.vx-cta-email:hover strong { color: #fff; }

/* Footer */
.vx-footer {
    background: var(--vx-navy-deep);
    color: rgba(255,255,255,0.72);
    position: relative;
}
.vx-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--vx-gradient);
}
.vx-footer-main { padding: 3.25rem 0 2rem; }
.vx-footer-about {
    font-size: 0.9375rem;
    line-height: 1.75;
    margin: 1rem 0 1.25rem;
    max-width: 380px;
    color: rgba(255,255,255,0.68);
}
.vx-footer-social {
    display: flex;
    gap: 0.5rem;
}
.vx-footer-social a {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: var(--vx-cyan-light);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.vx-footer-social a:hover {
    background: rgba(62,231,243,0.15);
    color: #fff;
}
.vx-footer-contact { list-style: none; padding: 0; margin: 0 0 0.5rem; }
.vx-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    font-size: 0.875rem;
    line-height: 1.5;
}
.vx-footer-contact i { color: var(--vx-cyan-light); margin-top: 3px; width: 16px; flex-shrink: 0; }
.vx-footer-contact a { color: rgba(255,255,255,0.88); text-decoration: none; }
.vx-footer-contact a:hover { color: var(--vx-cyan-light); }
.vx-footer h4 {
    font-family: var(--vx-font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.15rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.vx-footer-links { list-style: none; padding: 0; margin: 0; }
.vx-footer-links li { margin-bottom: 0.5rem; }
.vx-footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.vx-footer-links a:hover { color: var(--vx-cyan-light); }
.vx-footer-links-2col {
    columns: 2;
    column-gap: 1.25rem;
}
.vx-footer-links-2col li { break-inside: avoid; }
.vx-footer-bar {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 0;
}
.vx-footer-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.vx-footer-bar p { margin: 0; font-size: 0.8125rem; color: rgba(255,255,255,0.45); }
.vx-footer-bar-links { display: flex; gap: 1.25rem; }
.vx-footer-bar-links a {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
}
.vx-footer-bar-links a:hover { color: var(--vx-cyan-light); }

.vx-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px; height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    z-index: 900;
    transition: transform 0.2s;
}
.vx-wa:hover { transform: scale(1.08); color: #fff; }
body.vx-no-wa .vx-top { bottom: 22px; }
.vx-top {
    position: fixed;
    right: 22px;
    bottom: 90px;
    width: 44px; height: 44px;
    background: var(--vx-white);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius);
    color: var(--vx-navy);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
    z-index: 900;
    box-shadow: var(--vx-shadow);
}
.vx-top:hover {
    background: var(--vx-gradient);
    color: var(--vx-navy-deep);
    border-color: transparent;
}
.vx-top.is-show { opacity: 1; visibility: visible; }

/* Hizmet detay */
.vx-hizmet-hero, .vox-hizmet-hero {
    position: relative;
    min-height: 300px;
    background: var(--vx-navy) center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 2.75rem 0;
}
.vx-hizmet-hero-overlay, .vox-hizmet-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(7,22,43,0.92) 0%, rgba(11,31,58,0.5) 100%);
}
.vx-hizmet-hero .container, .vox-hizmet-hero .container { position: relative; z-index: 1; }
.vx-hizmet-hero-title, .vox-hizmet-hero-title {
    font-family: var(--vx-font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.vx-hizmet-breadcrumb .breadcrumb-item a,
.vox-hizmet-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.72); font-size: 0.875rem; }
.vx-hizmet-breadcrumb .breadcrumb-item.active { color: var(--vx-cyan-light); }

/* SEO içerik */
.vx-seo-section { background: var(--vx-bg-muted); }
.vx-seo-wrap {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 2rem 2.25rem;
    background: var(--vx-bg-muted);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-lg);
    box-sizing: border-box;
}
.vx-seo-content {
    max-width: 100%;
    margin: 0;
    color: var(--vx-text);
    line-height: 1.78;
}
.vx-seo-content h2 {
    font-family: var(--vx-font-head);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--vx-navy);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}
.vx-seo-content h3 {
    font-family: var(--vx-font-head);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--vx-navy);
    margin: 1.75rem 0 0.65rem;
}
.vx-seo-content p {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    color: var(--vx-text-muted);
}
.vx-seo-content a {
    color: var(--vx-cyan-dark);
    font-weight: 600;
    text-decoration: none;
}
.vx-seo-content a:hover { text-decoration: underline; }
.vx-seo-content strong { color: var(--vx-navy); font-weight: 700; }

/* SEO scroll — anasayfa */
.vx-seo-scroll {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.25rem 1.35rem;
    background: var(--vx-white);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-lg);
    box-shadow: var(--vx-shadow);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--vx-cyan-dark) var(--vx-bg-muted);
}
.vx-seo-scroll::-webkit-scrollbar { width: 6px; }
.vx-seo-scroll::-webkit-scrollbar-thumb {
    background: var(--vx-cyan-dark);
    border-radius: 3px;
}
.vx-seo-scroll .vx-seo-content { max-width: none; margin: 0; }
.vx-seo-scroll .vx-seo-content h2 { font-size: 1.25rem; margin-top: 0; }
.vx-seo-scroll .vx-seo-content h3 { font-size: 1rem; margin-top: 1.25rem; }
.vx-seo-scroll .vx-seo-content p { font-size: 0.875rem; margin-bottom: 0.85rem; }

/* Hizmet intro */
.vx-service-intro {
    background: var(--vx-white);
    border: 1px solid var(--vx-border);
    border-left: 4px solid var(--vx-cyan-dark);
    border-radius: 0 var(--vx-radius-lg) var(--vx-radius-lg) 0;
    padding: 1.35rem 1.5rem;
    margin-bottom: 1.75rem;
    box-shadow: var(--vx-shadow);
}
.vx-service-intro-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.78;
    color: var(--vx-text);
}

/* SSS — hizmet SEO */
.vx-seo-content .vx-faq {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.75rem 0 1.25rem;
}
.vx-faq-item {
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius);
    background: var(--vx-white);
    overflow: hidden;
}
.vx-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 0.9rem 1.1rem;
    font-family: var(--vx-font-head);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--vx-navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    transition: background 0.2s, color 0.2s;
}
.vx-faq-item summary::-webkit-details-marker { display: none; }
.vx-faq-item summary::after {
    content: '+';
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--vx-cyan-dark);
    flex-shrink: 0;
}
.vx-faq-item[open] summary {
    background: var(--vx-bg-muted);
    color: var(--vx-cyan-dark);
}
.vx-faq-item[open] summary::after { content: '−'; }
.vx-faq-item p {
    margin: 0;
    padding: 0.85rem 1.1rem 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--vx-text-muted);
    border-top: 1px solid var(--vx-border);
}

/* Kurumsal / statik sayfalar */
.vx-page-hero {
    background: linear-gradient(135deg, var(--vx-bg) 0%, var(--vx-bg-muted) 100%);
    padding: 2rem 0 2.25rem;
    border-bottom: 1px solid var(--vx-border);
}
.vx-page-hero::after {
    content: '';
    display: block;
    height: 3px;
    background: var(--vx-gradient);
    margin-top: 2rem;
}
.vx-page-hero h1 {
    font-family: var(--vx-font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--vx-navy);
    margin: 0.5rem 0 0.35rem;
    text-transform: none;
    letter-spacing: -0.02em;
}
.vx-page-hero p { color: var(--vx-text-muted); margin: 0; font-size: 1rem; }
.vx-page-hero-sm { padding: 1.75rem 0 2rem; }
.vx-crumb { margin-bottom: 0.5rem; }
.vx-crumb .breadcrumb-item a { color: var(--vx-text-muted); text-decoration: none; }
.vx-crumb .breadcrumb-item.active { color: var(--vx-cyan-dark); }

.vx-page-media {
    border-radius: var(--vx-radius-lg);
    overflow: hidden;
    border: 1px solid var(--vx-border);
    box-shadow: var(--vx-shadow);
}
.vx-page-media img { width: 100%; height: auto; display: block; object-fit: cover; }

.vx-page-prose h2 {
    font-family: var(--vx-font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--vx-navy);
    margin: 0 0 0.75rem;
}
.vx-page-prose h2 + p { margin-top: 0; }
.vx-page-prose h2:not(:first-child) { margin-top: 1.75rem; }
.vx-page-prose h3 {
    font-family: var(--vx-font-head);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--vx-navy);
    margin: 1.25rem 0 0.5rem;
}
.vx-page-prose p { color: var(--vx-text-muted); line-height: 1.75; margin-bottom: 1rem; }
.vx-page-prose a { color: var(--vx-cyan-dark); font-weight: 600; }
.vx-page-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.vx-page-list li {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.4rem 0; color: var(--vx-text); font-weight: 500;
}
.vx-page-list i { color: var(--vx-cyan-dark); font-size: 0.8rem; }

.vx-page-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.vx-page-card {
    background: var(--vx-white);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius);
    padding: 0.85rem 1rem;
}
.vx-page-card strong { display: block; color: var(--vx-navy); font-size: 0.9375rem; }
.vx-page-card span { font-size: 0.8125rem; color: var(--vx-text-muted); }

.vx-empty-state {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
}
.vx-empty-icon {
    width: 64px; height: 64px;
    margin: 0 auto 1rem;
    background: var(--vx-gradient-soft);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--vx-cyan-dark);
    font-size: 1.5rem;
}
.vx-empty-state h2 { font-size: 1.25rem; color: var(--vx-navy); margin-bottom: 0.75rem; }
.vx-empty-state p { color: var(--vx-text-muted); margin-bottom: 1.25rem; }

/* İletişim */
.vx-contact-info h2,
.vx-contact-form-box h2 {
    font-family: var(--vx-font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--vx-navy);
    margin-bottom: 0.75rem;
}
.vx-contact-list { list-style: none; padding: 0; margin: 1.25rem 0; }
.vx-contact-list li {
    display: flex; gap: 0.85rem; align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--vx-border);
}
.vx-contact-list i { color: var(--vx-cyan-dark); margin-top: 0.2rem; width: 18px; text-align: center; }
.vx-contact-list small { display: block; font-size: 0.75rem; color: var(--vx-text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.vx-contact-list a { color: var(--vx-navy); font-weight: 600; text-decoration: none; }
.vx-contact-list span { color: var(--vx-text); font-weight: 500; }
.vx-contact-map { border-radius: var(--vx-radius); overflow: hidden; border: 1px solid var(--vx-border); }
.vx-contact-form-box {
    background: var(--vx-white);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--vx-shadow);
}
.vx-form label { font-size: 0.875rem; font-weight: 600; color: var(--vx-navy); margin-bottom: 0.35rem; display: block; }
.vx-form .form-control {
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius);
    padding: 0.65rem 0.85rem;
    font-size: 0.9375rem;
}
.vx-form .form-control:focus {
    border-color: var(--vx-cyan-dark);
    box-shadow: 0 0 0 3px rgba(0, 180, 200, 0.12);
}
.vx-form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.8125rem;
    color: var(--vx-text-muted);
    line-height: 1.55;
    cursor: pointer;
}
.vx-form-check input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    accent-color: var(--vx-cyan-dark);
}
.vx-form-check a { color: var(--vx-cyan-dark); font-weight: 600; }
.vx-form-alert {
    padding: 0.85rem 1rem;
    border-radius: var(--vx-radius);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.vx-form-alert.is-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.vx-form-alert.is-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Blog detay */
.vx-blog-meta-line { font-size: 0.875rem; color: var(--vx-text-muted); margin-top: 0.35rem; }
.vx-blog-article-img {
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
    border-bottom: 1px solid var(--vx-border);
}
.vx-blog-article-img img { width: 100%; height: auto; display: block; }
.vx-blog-article-content img { max-width: 100%; height: auto; border-radius: var(--vx-radius); }

/* Hizmet sidebar */
.vx-hizmet-sidebar-acc { margin: 0; }
.vx-hizmet-sidebar-acc-head {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: var(--vx-white);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-lg);
    font-family: var(--vx-font-head);
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--vx-navy);
    cursor: pointer;
    box-shadow: var(--vx-shadow);
}
.vx-hizmet-sidebar-acc-head::-webkit-details-marker { display: none; }
.vx-hizmet-sidebar-acc-head i {
    font-size: 0.75rem;
    color: var(--vx-cyan-dark);
    transition: transform 0.25s;
}
.vx-hizmet-sidebar-acc[open] .vx-hizmet-sidebar-acc-head i { transform: rotate(180deg); }
.vx-hizmet-sidebar-acc .vox-hizmet-sidebar {
    margin-top: 0.65rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* Blog detay — Diğer Yazılar (masaüstünde her zaman görünür) */
.vox-blog-sidebar { display: block; }
.vox-blog-sidebar-toggle {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 0.85rem 1rem;
    margin: 0 0 0.65rem;
    background: var(--vx-white);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-lg);
    font-family: var(--vx-font-head);
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--vx-navy);
    cursor: pointer;
    box-shadow: var(--vx-shadow);
    text-align: left;
}
.vox-blog-sidebar-toggle i {
    font-size: 0.75rem;
    color: var(--vx-cyan-dark);
    transition: transform 0.25s;
}
.vox-blog-sidebar.is-open .vox-blog-sidebar-toggle i { transform: rotate(180deg); }
@media (max-width: 991px) {
    .vox-blog-sidebar:not(.is-open) .vox-hizmet-sidebar-list { display: none; }
    .vox-blog-sidebar.is-open .vox-hizmet-sidebar-list {
        max-height: min(50vh, 22rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}
@media (min-width: 992px) {
    .vox-blog-sidebar .vox-hizmet-sidebar-list {
        display: block;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.vx-hizmet-sidebar, .vox-hizmet-sidebar {
    background: var(--vx-white);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-lg);
    padding: 1.35rem;
    position: sticky;
    top: 110px;
    box-shadow: var(--vx-shadow);
}
.vx-hizmet-sidebar-title, .vox-hizmet-sidebar-title {
    font-family: var(--vx-font-head);
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--vx-navy);
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 3px solid transparent;
    border-image: var(--vx-gradient) 1;
}
.vx-hizmet-sidebar-list, .vox-hizmet-sidebar-list { list-style: none; padding: 0; margin: 0; }
.vx-hizmet-sidebar-list a, .vox-hizmet-sidebar-list a {
    display: block;
    padding: 0.5rem 0.6rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--vx-text);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.15s;
}
.vx-hizmet-sidebar-list a:hover,
.vx-hizmet-sidebar-list a.active {
    background: var(--vx-gradient-soft);
    color: var(--vx-cyan-dark);
}
.vx-gallery-grid, .vox-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin-bottom: 2rem;
}
.vx-gallery-row {
    margin-bottom: 2rem;
}
.vox-gallery-cell {
    margin: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}
.vox-gallery-caption {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0.7rem 0.85rem;
    background: var(--vx-bg-muted);
    border: 1px solid var(--vx-border);
    border-top: none;
    border-radius: 0 0 var(--vx-radius) var(--vx-radius);
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--vx-text-muted);
    text-align: left;
}
.vox-gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 35, 55, 0.45);
    color: #fff;
    font-size: 1.35rem;
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
}
.vox-gallery-item:hover .vox-gallery-zoom { opacity: 1; }
.vx-gallery-item, .vox-gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--vx-radius) var(--vx-radius) 0 0;
    overflow: hidden;
    display: block;
    position: relative;
    border: 1px solid var(--vx-border);
    border-bottom: none;
}
.vx-gallery-item img, .vox-gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.35s;
}
.vx-gallery-item:hover img, .vox-gallery-item:hover img { transform: scale(1.05); }

.page-header {
    background: linear-gradient(135deg, var(--vx-bg) 0%, var(--vx-bg-muted) 100%);
    padding: 2.75rem 0;
    border-bottom: 1px solid var(--vx-border);
    position: relative;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--vx-gradient);
}
.page-header .page-title {
    font-family: var(--vx-font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--vx-navy);
    margin: 0.5rem 0 0;
    text-transform: uppercase;
}
.page-header .lead { color: var(--vx-text-muted); margin: 0.4rem 0 0; }

/* Responsive */
@media (max-width: 1199px) {
    .vx-nav { display: none; }
    .vx-burger { display: flex; }
    .vx-logo-img { height: 72px; max-width: 240px; }
    .vx-header-inner { height: 80px; }
    .vx-teklif-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .vx-teklif-panel { width: 100%; min-width: 0; }
    .vx-teklif-card { padding: 1.75rem 1.35rem; }
    .vx-teklif-perks { flex-direction: column; gap: 0.55rem; }
}
@media (max-width: 767px) {
    .vx-page-cards { grid-template-columns: 1fr; }
    .vx-seo-scroll { max-height: 400px; padding: 1rem; }
    .vx-seo-wrap { padding: 1.35rem 1.15rem; }
    .vx-topbar-inner { justify-content: center; }
    .vx-topbar-contacts { width: 100%; justify-content: center; gap: 0.75rem; }
    .vx-topbar-contact { font-size: 0.8125rem; padding: 0.35rem 0.5rem; background: rgba(255,255,255,0.07); border-radius: 6px; }
    .vx-topbar-email { max-width: 90%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    body.vx-no-wa .vx-topbar-email { max-width: 100%; }
    .vx-slider { min-height: 520px; }
    .vx-slider-content { padding: 3.5rem 0 4rem; }
    .vx-teklif-band { padding-bottom: 2.5rem; margin-top: 0; }
    .vx-semt-links-list { grid-template-columns: 1fr; }
    .vx-slider-arrow { display: none; }
    .vx-section { padding: 3.5rem 0; }
    .vx-seo-section { padding: 2.75rem 0; }
    .vx-section-head-row { flex-direction: column; align-items: flex-start; }
    .vx-cta-card { padding: 1.75rem 1.5rem; flex-direction: column; align-items: flex-start; }
    .vx-cta-actions { width: 100%; }
    .vx-cta-actions .vx-btn { width: 100%; }
    .vx-blog-card { flex-direction: column; }
    .vx-blog-img { flex: none; height: 200px; }
    .vx-blog-body { padding: 1.35rem; }
    .vx-gallery-grid, .vox-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .vx-hizmet-sidebar, .vox-hizmet-sidebar { position: static; top: auto; }
    .vox-hizmet-hero, .vx-hizmet-hero {
        min-height: 120px;
        padding: 1rem 0 1.15rem;
        align-items: flex-end;
    }
    .vox-hizmet-breadcrumb, .vx-hizmet-breadcrumb { display: none; }
    .vox-hizmet-hero-title, .vx-hizmet-hero-title {
        font-size: 1.35rem;
        text-transform: none;
        letter-spacing: -0.02em;
    }
    .vx-logo-img { height: 60px; max-width: 200px; }
    .vx-footer-links-2col { columns: 1; }
    .vx-footer-bar-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 991px) {
    .vx-hizmet-sidebar-acc--blog[open] .vox-hizmet-sidebar-list {
        max-height: min(50vh, 22rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}
@media (min-width: 992px) {
    .vx-hizmet-sidebar-acc > summary { display: none; }
    .vx-hizmet-sidebar-acc:not([open]) > *:not(summary) { display: block !important; }
    .vx-hizmet-sidebar-acc .vox-hizmet-sidebar { margin-top: 0; }
}
@media (max-width: 575px) {
    .vx-dropdown-wide { min-width: 90vw; }
    .vx-card-body { padding: 0.85rem 0.75rem 1rem; }
    .vx-card-body h3 { font-size: 0.875rem; line-height: 1.35; }
    .vx-card-body span { font-size: 0.75rem; }
    .vx-blog-tile-body { padding: 0.85rem 0.75rem 1rem; }
    .vx-blog-tile-title,
    .vx-blog-tile-body h2,
    .vx-blog-tile-body h3 { font-size: 0.8125rem; line-height: 1.35; }
    .vx-blog-tile-excerpt,
    .vx-blog-tile-body p { display: none; }
    .vx-blog-tile-more { font-size: 0.75rem; }
    .vx-blog-tile-date { font-size: 0.625rem; padding: 0.25rem 0.45rem; }
    .vox-gallery-caption { font-size: 0.7rem; padding: 0.5rem 0.55rem; line-height: 1.4; }
}
