* {
    box-sizing: border-box;
}

:root {
    --red: #ef3333;
    --dark: #070b10;
    --dark-2: #0d121a;
    --text: #ffffff;
    --muted: #c7cbd4;
    --line: rgba(255,255,255,.14);
    --hero-bg: linear-gradient(135deg, #06090e 0%, #111827 55%, #2a0d13 100%);
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--dark);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 8, 13, .82);
}

.nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span {
    display: inline-block;
    padding: 3px 6px;
    border-radius: 3px;
    background: var(--red);
    color: #fff;
}

.logo small {
    display: block;
    margin-top: 3px;
    color: #9ca3af;
    font-size: 8px;
    letter-spacing: 2px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 700;
    color: #e5e7eb;
}

.menu a.active {
    color: #fff;
    border-bottom: 2px solid var(--red);
    padding-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 22px;
    border-radius: 6px;
    border: 1px solid transparent;
    background: var(--red);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.btn.outline {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.25);
}

.hero {
    position: relative;
    min-height: 640px;
    padding-top: 140px;
    background-image:
    linear-gradient(90deg, rgb(5 8 13 / 0%) 0%, rgb(5 8 13 / 46%) 42%, rgb(5 8 13 / 0%) 100%), linear-gradient(to bottom, rgba(5, 8, 13, .15), rgb(5 8 13 / 0%)), var(--hero-bg);
    background-size: cover;
    background-position: center right;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .12);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    padding-bottom: 58px;
}

.eyebrow {
    margin-bottom: 18px;
    color: #ff6b6b;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.hero-title {
    margin: 0;
    max-width: 600px;
    font-size: 46px !important;
    line-height: 1.12;
    letter-spacing: -1px;
    font-weight: 900;
}

.hero-title span {
    color: var(--red);
}

.hero-text {
    max-width: 560px;
    margin-top: 22px;
    color: #e5e7eb;
    font-size: 17px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

.fake-screen {
    position: absolute;
    right: max(48px, calc((100vw - 1180px) / 2));
    top: 145px;
    width: 520px;
    height: 300px;
    border: 1px solid rgba(255,255,255,.22);
    background:
    radial-gradient(circle at 48% 45%, rgba(255,255,255,.9), rgba(239,51,51,.75) 14%, rgba(30,79,180,.65) 36%, rgba(5,8,13,.95) 72%);
    box-shadow: 0 35px 120px rgba(0,0,0,.55);
}

.fake-screen::before,
.fake-screen::after {
    content: "";
    position: absolute;
    top: -52px;
    width: 12px;
    height: 52px;
    background: rgba(255,255,255,.22);
}

.fake-screen::before {
    left: 35px;
}

.fake-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.35), transparent 55%);
    pointer-events: none;
}
.fake-screen img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.stats {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    background: rgba(8,12,18,.86);
}

.stat {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 88px;
    padding: 20px 22px;
    border-right: 1px solid var(--line);
}

.stat:last-child {
    border-right: 0;
}

.stat-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(239,51,51,.55);
    border-radius: 10px;
    color: var(--red);
    font-size: 18px;
    font-weight: 900;
}

.stat b {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.stat span {
    color: #aeb5c2;
    font-size: 13px;
}

.services {
    padding: 82px 0;
    background: #fff;
    color: #111827;
}

.services-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.section-label {
    margin-bottom: 12px;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.services p {
    margin: 22px 0 0;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.75;
}

.service-list {
    margin: 26px 0 30px;
    padding: 0;
    list-style: none;
}

.service-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: #1f2937;
    font-weight: 700;
}

.service-list li::before {
    content: "✓";
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 22px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-size: 13px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.photo-box {
    min-height: 180px;
    border-radius: 8px;
    background:
    radial-gradient(circle at 55% 45%, rgba(255,255,255,.8), rgba(239,51,51,.5) 18%, rgba(34,88,180,.55) 36%, rgba(8,12,18,.95) 72%);
    border: 1px solid rgba(17,24,39,.12);
    overflow: hidden;
}
.photo-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.types {
    padding: 82px 0;
    background: #080b10;
    color: #fff;
}

.center {
    text-align: center;
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 46px;
}

.type-card {
    display: block;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .035);
    color: inherit;
    text-decoration: none;
    transition: .18s ease;
}

.type-image {
    height: 210px;
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.type-body {
    padding: 24px;
}

.type-body b {
    display: block;
    margin-bottom: 12px;
    color: #fff;
    font-size: 20px;
    line-height: 1.25;
}

.type-body p {
    margin: 0;
    color: #d1d5db;
    font-size: 15.5px;
    line-height: 1.7;
}

.usage {
    padding: 60px 0;
    background: #fff;
    color: #111827;
}

.usage h2 {
    margin: 0 0 38px;
    text-align: center;
    font-size: 34px;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    text-align: center;
}

.usage-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(239,51,51,.28);
    border-radius: 14px;
    color: var(--red);
    font-weight: 900;
}

.locations {
    padding: 60px 0;
    background: #090d13;
    color: #fff;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.location-card {
    position: relative;
    min-height: 115px;
    padding: 18px;
    border-radius: 8px;
    overflow: hidden;
    background:
    linear-gradient(to top, rgba(0,0,0,.75), transparent),
    radial-gradient(circle at center, rgba(239,51,51,.35), rgba(20,30,50,.9));
    display: flex;
    align-items: end;
    font-weight: 800;
}

.location-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.location-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.18));
}

.location-card span {
    position: relative;
    z-index: 3;
}

.cta {
    padding: 40px 0;
    background:
    linear-gradient(90deg, rgba(8,12,18,.98), rgba(60,10,14,.88)),
    #080b10;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 18px;
    align-items: center;
}

.cta h2 {
    margin: 0 0 8px;
    font-size: 30px;
}

.cta p {
    margin: 0;
    color: #c7cbd4;
}

.footer {
    padding: 42px 0 24px;
    background: #070a0f;
    color: #c7cbd4;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
}

.footer h3,
.footer h4 {
    margin: 0 0 16px;
    color: #fff;
}

.footer p,
.footer a {
    display: block;
    margin-bottom: 9px;
    color: #c7cbd4;
    font-size: 14px;
}

.copyright {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 13px;
    color: #8f96a3;
}
.type-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.page-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: end;
    padding: 90px 0 58px;
    background-image:
    linear-gradient(90deg, rgba(5, 8, 13, .0) 0%, rgba(5, 8, 13, .0) 48%, rgba(5, 8, 13, .0) 100%), 
    linear-gradient(to top, rgb(5 8 13), rgba(5, 8, 13, .0)), 
    var(--page-hero-bg);
    background-position: center 35%;
    color: #fff;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .35;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -1.2px;
    font-weight: 900;
}
.page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: start;
}

.page-content-card {
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 28px;
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
    color: #374151;
}

.page-content-card h2,
.page-content-card h3 {
    position: relative;
    margin: 38px 0 16px;
    color: #111827;
    line-height: 1.2;
    font-weight: 800;
}

.page-content-card h2:first-child,
.page-content-card h3:first-child {
    margin-top: 0;
}

.page-content-card h2::before,
.page-content-card h3::before {
    content: "";
    display: block;
    width: 52px;
    height: 4px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ef4444, #f97316);
}

.page-content-card p {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.9;
    color: #374151;
    font-weight: 500;
}

.page-content-card strong {
    color: #fff;
}

.page-content-card ul {
    margin: 18px 0 24px;
    padding-left: 22px;
}

.page-content-card li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.page-sidebar {
    position: sticky;
    top: 110px;
}

.quote-card {
    padding: 30px;
    border-radius: 26px;
    background:
    linear-gradient(145deg, rgba(239, 68, 68, .18), rgba(17, 24, 39, .96)),
    #111827;
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.quote-label {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(239, 68, 68, .16);
    color: #fecaca;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.quote-card h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 25px;
    line-height: 1.18;
}

.quote-card p {
    margin: 0 0 22px;
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.65;
}

.quote-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    margin-top: 12px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.quote-btn.secondary {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .14);
}
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    z-index: 50;
    min-width: 250px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(10, 15, 24, .98);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    transition: .18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: #e5e7eb;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: rgba(239, 68, 68, .16);
    color: #fff;
}
.service-list a,
.usage-grid a,
.type-card,
.location-card {
    color: inherit;
    text-decoration: none;
}

.service-list a {
    font-weight: 700;
}

.service-list a:hover {
    color: #ef4444;
}

.type-card {
    display: block;
}

.usage-grid a {
    display: block;
}

.type-card,
.location-card,
.usage-grid a {
    transition: .18s ease;
}

.type-card:hover,
.location-card:hover,
.usage-grid a:hover {
    transform: translateY(-4px);
}
.teklif-hero {
    position: relative;
    padding: 170px 0 80px;
    background:
    radial-gradient(circle at top right, rgba(239, 68, 68, .22), transparent 34%),
    linear-gradient(135deg, #05080d 0%, #111827 55%, #1f2937 100%);
    color: #fff;
}

.teklif-hero-content {
    max-width: 820px;
}

.teklif-hero h1 {
    margin: 0 0 22px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -1.4px;
    font-weight: 900;
}

.teklif-hero p {
    max-width: 680px;
    margin: 0;
    color: #d1d5db;
    font-size: 18px;
    line-height: 1.75;
}

.teklif-section {
    padding: 80px 0;
    background: #0b111c;
}

.teklif-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 34px;
    align-items: start;
}

.teklif-form-card {
    padding: 38px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: #111827;
    font-size: 14px;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    background: #fff;
    color: #111827;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    transition: .18s ease;
}

.form-group input,
.form-group select {
    height: 52px;
    padding: 0 16px;
}

.form-group textarea {
    resize: vertical;
    padding: 15px 16px;
    line-height: 1.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, .12);
}

.form-submit {
    margin-top: 28px;
    border: none;
    cursor: pointer;
}

.form-success {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #dcfce7;
    color: #166534;
    font-weight: 800;
}

.form-error {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #fee2e2;
    color: #991b1b;
}

.form-error b {
    display: block;
    margin-bottom: 8px;
}

.form-error ul {
    margin: 0;
    padding-left: 20px;
}

.teklif-side {
    position: sticky;
    top: 110px;
}

.teklif-info-box {
    margin-top: 22px;
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    color: #d1d5db;
}

.teklif-info-box b {
    display: block;
    margin-bottom: 14px;
    color: #fff;
    font-size: 18px;
}

.teklif-info-box ul {
    margin: 0;
    padding-left: 20px;
}

.teklif-info-box li {
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 980px) {
    .teklif-grid {
        grid-template-columns: 1fr;
    }

    .teklif-side {
        position: static;
    }
}

@media (max-width: 640px) {
    .teklif-form-card {
        padding: 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .teklif-hero {
        padding: 145px 0 60px;
    }
}
.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.robot-check {
    display: flex !important;
    align-items: center;
    gap: 12px;
    width: fit-content;
    padding: 15px 18px;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    background: #f9fafb;
    color: #111827;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.robot-check input {
    width: 22px;
    height: 22px;
    accent-color: #ef4444;
    cursor: pointer;
}

.robot-check span {
    line-height: 1;
}
.mobile-menu-button {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-button span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: .18s ease;
}

.mobile-menu-overlay {
    display: none;
}

@media (max-width: 980px) {
    .header {
        z-index: 100;
    }

    .nav {
        gap: 14px;
    }

    .mobile-menu-button {
        display: inline-flex;
        order: 3;
    }

    .nav > .btn {
        display: none;
    }

    .menu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 120;
        width: min(360px, 86vw);
        height: 100vh;
        padding: 92px 22px 28px;
        background: rgba(8, 13, 22, .98);
        border-left: 1px solid rgba(255, 255, 255, .10);
        box-shadow: -24px 0 70px rgba(0, 0, 0, .38);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        transform: translateX(105%);
        transition: .22s ease;
        overflow-y: auto;
    }

    body.mobile-menu-open .menu {
        transform: translateX(0);
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    .menu > a,
    .nav-dropdown-toggle {
        display: block;
        padding: 14px 16px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .05);
        color: #fff;
        font-size: 15px;
        font-weight: 800;
    }

    .nav-dropdown {
        display: block;
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 100%;
        margin-top: 8px;
        padding: 8px;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: rgba(255, 255, 255, .055);
        border-radius: 14px;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        transform: none;
    }

    .nav-dropdown-menu a {
        padding: 11px 12px;
        font-size: 14px;
        white-space: normal;
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 110;
        background: rgba(0, 0, 0, .56);
        opacity: 0;
        visibility: hidden;
        transition: .18s ease;
    }

    body.mobile-menu-open .mobile-menu-overlay {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    body.mobile-menu-open .mobile-menu-button span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.mobile-menu-open .mobile-menu-button span:nth-child(2) {
        opacity: 0;
    }

    body.mobile-menu-open .mobile-menu-button span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}
@media (max-width: 980px) {
    .header {
        z-index: 9998 !important;
    }

    .mobile-menu-button {
        position: relative;
        z-index: 10001 !important;
    }

    .menu {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        z-index: 10000 !important;
        width: min(360px, 86vw) !important;
        height: 100vh !important;
        padding: 92px 22px 28px !important;
        background: #080d16 !important;
        border-left: 1px solid rgba(255, 255, 255, .10) !important;
        box-shadow: -24px 0 70px rgba(0, 0, 0, .45) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 8px !important;
        transform: translateX(105%) !important;
        transition: .22s ease !important;
        overflow-y: auto !important;
    }

    body.mobile-menu-open .menu {
        transform: translateX(0) !important;
    }

    .mobile-menu-overlay {
        z-index: 9999 !important;
    }

    .menu > a,
    .menu .nav-dropdown-toggle {
        display: block !important;
        padding: 14px 16px !important;
        border-radius: 14px !important;
        background: rgba(255, 255, 255, .06) !important;
        color: #fff !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        text-decoration: none !important;
    }

    .menu .nav-dropdown {
        display: block !important;
        width: 100% !important;
    }

    .menu .nav-dropdown-menu {
        display: block !important;
        position: static !important;
        min-width: 100% !important;
        margin-top: 8px !important;
        padding: 8px !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, .055) !important;
        border-radius: 14px !important;
    }

    .menu .nav-dropdown-menu a {
        display: block !important;
        padding: 11px 12px !important;
        color: #e5e7eb !important;
        font-size: 14px !important;
        white-space: normal !important;
        text-decoration: none !important;
    }
}
.kvkk-check {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    background: #f9fafb;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    cursor: pointer;
}

.kvkk-check input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex: 0 0 auto;
    accent-color: #ef4444;
    cursor: pointer;
}

.kvkk-check span {
    display: block;
}
.kvkk-check a {
    color: #ef4444;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.kvkk-check a:hover {
    color: #dc2626;
}
.site-logo-image {
    display: block;
    max-width: 260px;
    max-height: 58px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 640px) {
    .site-logo-image {
        max-width: 220px;
        max-height: 50px;
    }
}
.footer-logo-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo-image {
    display: block;
    max-width: 260px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: #d1d5db;
    font-size: 14px;
    font-weight: 700;
}

.breadcrumb a {
    color: #f3f4f6;
    text-decoration: none;
    transition: .18s ease;
}

.breadcrumb a:hover {
    color: #ef4444;
}

.breadcrumb span {
    color: #9ca3af;
}

.breadcrumb strong {
    color: #fff;
    font-weight: 800;
}

.services .breadcrumb {
    margin-bottom: 24px;
    color: #6b7280;
}

.services .breadcrumb a {
    color: #374151;
}

.services .breadcrumb strong {
    color: #111827;
}
.content-image-box {
    margin: 0 0 34px;
    overflow: hidden;
    border-radius: 24px;
    background: #111827;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .22);
}

.content-image-box img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 430px;
    object-fit: cover;
}

.content-image-box figcaption {
    padding: 13px 18px;
    background: rgba(17, 24, 39, .96);
    color: #d1d5db;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}
@media (max-width: 980px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        position: static;
    }


}
@media (max-width: 1050px) {
    .fake-screen {
        display: none;
    }

    .hero-content {
        max-width: 760px;
    }

    .stats,
    .services-grid,
    .type-grid,
    .usage-grid,
    .location-grid,
    .cta-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .menu {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
    }

    .hero-title {
        font-size: 38px !important;
    }

    .stats,
    .services-grid,
    .photo-grid,
    .type-grid,
    .usage-grid,
    .location-grid,
    .cta-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 1100px) {
    .type-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .type-grid {
        grid-template-columns: 1fr;
    }

    .type-image {
        height: 190px;
    }
}