﻿/* ════════════════════════════════════════════
       RESET
    ════════════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    color: #444;
    background: #fff;
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .2s;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ════════════════════════════════════════════
       COLOUR TOKENS
    ════════════════════════════════════════════ */
:root {
    --primary: #1e3a5f;
    --accent: #2dbdaa;
    --accent-dk: #219e8e;
    --dark: #111;
    --light-bg: #f8f9f9;
    --border: #e4e4e4;
    --text-muted: #a3baca;
    --white: #ffffff;
}

/* ════════════════════════════════════════════
       UTILITY
    ════════════════════════════════════════════ */
.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*="col-"] {
    padding: 0 15px;
}

.col-md-3 {
    width: 25%;
}

.col-md-4 {
    width: 33.333%;
}

.col-md-6 {
    width: 50%;
}

.col-md-8 {
    width: 66.666%;
}

.col-md-9 {
    width: 75%;
}

.col-md-12 {
    width: 100%;
}

.col-xs-6 {
    width: 50%;
}
/* ── EKSİK: footer col-xs-3 tanımı ── */
.col-xs-3 {
    width: 25%;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

/* ════════════════════════════════════════════
       BUTTON
    ════════════════════════════════════════════ */
.btn {
    display: inline-block;
    padding: 11px 26px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .25s;
    line-height: 1.4;
}

.btn-normal {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

    .btn-normal:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
    }

.btn-outline {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

    .btn-outline:hover {
        background: var(--accent);
        color: #fff;
    }

.btn-md {
    padding: 12px 30px;
    font-size: 13px;
}

/* ════════════════════════════════════════════
       TOP BAR
    ════════════════════════════════════════════ */
.top-bar {
    background: var(--primary);
    padding: 0;
    font-size: 13px;
    line-height: 40px;
    color: var(--text-muted);
}

    .top-bar .contact-info {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .top-bar .contact-info-item {
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--text-muted);
    }

        .top-bar .contact-info-item .fa {
            color: var(--text-muted);
            font-size: 12px;
        }

.top-bar-right {
    text-align: right;
}

.top-bar .social {
    display: inline-flex;
    gap: 4px;
    list-style: none;
    vertical-align: middle;
}

    .top-bar .social li a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        color: var(--text-muted);
        font-size: 13px;
        transition: color .2s;
        line-height: 40px;
    }

        .top-bar .social li a:hover {
            color: var(--accent);
        }

/* ════════════════════════════════════════════
       HEADER / NAV
    ════════════════════════════════════════════ */
/* ── FIX 1: position:relative eklendi — mobil menü absolute doğru açılsın ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow .3s;
    /* relative gerekli ki absolute child header'a göre konumlansın */
    position: relative;
}
/* sticky + relative aynı anda olmaz; sticky wrapper ile çözelim */
.site-header-sticky-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header {
    position: relative;
    transition: box-shadow .3s;
}

    .site-header.scrolled {
        box-shadow: 0 4px 24px rgba(0,0,0,.18);
    }

/* Üst şerit */
.header-top {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 20px;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

    .logo a {
        display: flex;
        align-items: center;
    }

.logo-img {
    height: 58px;
    width: auto;
    object-fit: contain;
}

/* Sağ bloklar */
.header-top-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hdr-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hdr-info-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,0 100%);
}

.hdr-info-text {
    line-height: 1.3;
}

.hdr-info-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.0px;
    text-transform: uppercase;
}

.hdr-info-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

/* CTA butonu */
.hdr-cta-btn {
    background: var(--accent);
    color: #fff !important;
    padding: 12px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,0 100%);
    transition: background .2s;
    white-space: nowrap;
    display: inline-block;
}

    .hdr-cta-btn:hover {
        background: var(--primary);
        color: #fff !important;
    }

/* ── FIX 2: Burger — display:none varsayılan, medyada flex ile gösterilir
   HTML'deki style="display:none;" KALDIRILMALI, CSS halleder ── */
.burger {
    display: none; /* desktop: gizli */
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    margin-left: 8px;
}

    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--primary);
        transition: all .3s;
    }

    .burger.open .burger-top {
        transform: rotate(45deg) translate(5px,5px);
    }

    .burger.open .burger-middle {
        opacity: 0;
    }

    .burger.open .burger-bottom {
        transform: rotate(-45deg) translate(5px,-5px);
    }

/* Alt şerit: nav */
.header-nav {
    background: var(--primary);
}

.header-nav-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

/* Main menu */
.main-menu {
    display: flex;
    align-items: stretch;
    gap: 0;
    list-style: none;
    flex: 1;
}

    .main-menu > li {
        position: relative;
    }

        .main-menu > li > a {
            display: flex;
            align-items: center;
            padding: 16px 16px;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: rgba(255,255,255,.75);
            white-space: nowrap;
            transition: color .2s, background .2s;
            border-right: 1px solid rgba(255,255,255,.07);
        }

        .main-menu > li:first-child > a {
            border-left: 1px solid rgba(255,255,255,.07);
        }

        .main-menu > li > a::after {
            content: '';
            display: block;
            height: 3px;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .25s;
        }

        .main-menu > li:hover > a,
        .main-menu > li.current-menu-item > a {
            color: #fff;
            background: rgba(255,255,255,.07);
        }

            .main-menu > li:hover > a::after,
            .main-menu > li.current-menu-item > a::after {
                transform: scaleX(1);
            }

        /* Dropdown ok */
        .main-menu > li.menu-item-has-children > a::before {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 10px;
            margin-left: 6px;
            margin-right: 6px;
            color: white;
        }

    /* Dropdown */
    .main-menu .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: #fff;
        box-shadow: 0 8px 30px rgba(0,0,0,.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: all .25s;
        z-index: 200;
        list-style: none;
    }

    .main-menu > li:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-menu .sub-menu li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 18px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        color: #444;
        border-bottom: 1px solid #f0f0f0;
        transition: background .15s, color .15s, padding-left .15s;
    }

        .main-menu .sub-menu li a::before {
            content: '›';
            color: var(--cp-primary);
            font-size: 16px;
            line-height: 1;
        }

    .main-menu .sub-menu li:last-child a {
        border-bottom: none;
    }

    .main-menu .sub-menu li a:hover {
        background: var(--light-bg);
        color: var(--cp-primary);
        padding-left: 24px;
    }

/* Arama */
.menu-search {
    display: flex;
    align-items: center;
    margin-left: auto;
    position: relative;
}

.menu-search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 16px 18px;
    color: rgba(255,255,255,.6);
    font-size: 14px;
    transition: color .2s;
    border-left: 1px solid rgba(255,255,255,.07);
}

    .menu-search-toggle:hover {
        color: #fff;
    }

.menu-search-form {
    position: absolute;
    right: 0;
    top: calc(100% + 3px);
    background: #fff;
    border-top: 3px solid var(--accent);
    padding: 10px;
    min-width: 240px;
    box-shadow: 0 6px 20px rgba(0,0,0,.14);
    display: none;
    z-index: 201;
}

    .menu-search-form.open {
        display: block;
    }

.menu-search-field {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--border);
    font-size: 13px;
    outline: none;
    transition: border-color .2s;
}

    .menu-search-field:focus {
        border-color: var(--accent);
    }

.mobile-wrap {
    display: contents;
}

.above-nav-bar {
    display: none;
}

/* ════════════════════════════════════════════
       HEADING STYLE
    ════════════════════════════════════════════ */
.heading-left {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0a0a0a;
    text-transform: uppercase;
    letter-spacing: .5px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 8px;
}

    .heading-left span {
        display: block;
    }

.heading-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.divider-modern::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin-top: 10px;
}

/* ════════════════════════════════════════════
       SECTION SPACING
    ════════════════════════════════════════════ */
.section-pad {
    padding: 70px 0;
}

.section-pad-sm {
    padding: 40px 0;
}

.bg-light {
    background: var(--light-bg);
}

.bg-dark {
    background: var(--primary);
}

.bg-accent {
    background: var(--accent);
}

.empty-space {
    display: block;
}

/* ════════════════════════════════════════════
       SERVICE ITEMS
    ════════════════════════════════════════════ */
.service-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .service-item img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
        transition: transform .5s;
        filter: brightness(.88);
    }

    .service-item:hover img {
        transform: scale(1.06);
        filter: brightness(.7);
    }

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.82) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 22px;
    transition: background .3s;
}

.service-item:hover .service-overlay {
    background: linear-gradient(to top, rgba(30,58,95,.92) 40%, rgba(30,58,95,.5) 100%);
}

.service-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: .5px;
    margin-bottom: 6px;
}

.service-overlay p {
    font-size: 13px;
    color: rgba(255,255,255,.8);
    line-height: 1.5;
    margin-bottom: 12px;
}

.service-overlay .read-more {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(6px);
    transition: all .3s;
}

.service-item:hover .read-more {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════════
       SERVICES & SOLUTIONS
    ════════════════════════════════════════════ */
.services-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    border-top: 1px solid var(--border);
}

.sol-item {
    padding: 30px 24px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background .2s;
}

    .sol-item:last-child {
        border-right: none;
    }

    .sol-item:hover {
        background: var(--light-bg);
    }

    .sol-item h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .5px;
        color: var(--primary);
        margin-bottom: 10px;
    }

    .sol-item p {
        font-size: 13px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .sol-item a.read-more {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--accent);
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

        .sol-item a.read-more:hover {
            color: var(--primary);
        }

/* ════════════════════════════════════════════
       DARK CTA BANNER
    ════════════════════════════════════════════ */
.cta-dark {
    background: var(--primary);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

    .cta-dark::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="none"/><path d="M0 60L60 0" stroke="rgba(255,255,255,.03)" stroke-width="1"/></svg>') repeat;
    }

.cta-dark-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-dark h1, .cta-dark h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.cta-dark p {
    color: rgba(255,255,255,.7);
    max-width: 600px;
    margin: 0 auto 28px;
    font-size: 15px;
}

/* ════════════════════════════════════════════
       GET A QUOTE BAND
    ════════════════════════════════════════════ */
.quote-band {
    padding: 22px 0;
}

.quote-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.quote-band-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.btn-quote {
    color: white;
    border-color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 28px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all .25s;
}

    .btn-quote:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
    }

/* ════════════════════════════════════════════
       TESTIMONIALS
    ════════════════════════════════════════════ */
.testimonial-wrap {
    display: flex;
    gap: 30px;
}

.testimonial-item {
    flex: 1;
    background: #fff;
    padding: 30px 28px;
    border-left: 4px solid transparent;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    transition: border-color .3s;
}

    .testimonial-item:hover {
        border-color: var(--accent);
    }

    .testimonial-item p {
        font-size: 14px;
        font-style: italic;
        color: #555;
        line-height: 1.75;
        margin-bottom: 20px;
        position: relative;
    }

        .testimonial-item p::before {
            content: '\201C';
            font-size: 52px;
            line-height: 1;
            color: var(--accent);
            opacity: .3;
            font-family: Georgia,serif;
            position: absolute;
            top: -10px;
            left: -8px;
        }

.user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 6px;
}

.user-image img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.name-user {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.jobtitle {
    font-size: 12px;
    color: var(--accent);
    letter-spacing: .5px;
}

/* ════════════════════════════════════════════
       RECENT NEWS
    ════════════════════════════════════════════ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

.post-minimal {
    background: #fff;
    overflow: hidden;
}

    .post-minimal header {
        position: relative;
        overflow: hidden;
    }

        .post-minimal header img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
            transition: transform .4s;
        }

    .post-minimal:hover header img {
        transform: scale(1.06);
    }

.post-minimal-wrap {
    padding: 18px 0 4px;
}

.post-minimal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.35;
    margin-bottom: 8px;
    transition: color .2s;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.post-minimal:hover .post-minimal-title {
    color: var(--accent);
}

.post-minimal-meta {
    display: flex;
    gap: 14px;
    list-style: none;
}

    .post-minimal-meta li {
        font-size: 12px;
        color: #999;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .post-minimal-meta .fa {
        font-size: 11px;
        color: white;
    }

/* ════════════════════════════════════════════
       TEAM
    ════════════════════════════════════════════ */
.team-desc {
    display: flex;
    gap: 0;
}

.team-desc-main {
    flex: 1;
}

.team {
    display: flex;
    gap: 0;
}

.member {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.member-wrap {
    position: relative;
}

.member-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform .4s, filter .4s;
    filter: grayscale(20%);
}

.member:hover .member-image img {
    transform: scale(1.04);
    filter: grayscale(0);
}

.member-info {
    padding: 16px 0;
}

.member-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: var(--primary);
    margin-bottom: 4px;
    display: block;
}

.member-title {
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team-desc-side {
    width: 280px;
    flex-shrink: 0;
    background: var(--primary);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-desc-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff !important;
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1.2;
}

.team-desc-description {
    font-size: 13px;
    color: rgba(255,255,255,.6) !important;
    line-height: 1.7;
    margin-bottom: 24px;
}

.team-desc-btn {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #fff !important;
    align-self: flex-start;
}

    .team-desc-btn:hover {
        background: #fff !important;
        color: var(--accent) !important;
    }

/* ════════════════════════════════════════════
       CONTACT CARDS
    ════════════════════════════════════════════ */
.contact-cards .col-md-4 {
    padding: 0 12px;
}

.card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 10px;
    background: var(--primary) !important;
}

    .card .icon {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
      
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #fff;
    }

    .card .item-title {
        display: block;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--text-muted) !important;
        margin-bottom: 4px;
    }

    .card .text {
        font-size: 15px;
        font-weight: 600;
        color: #fff !important;
        line-height: 1.4;
    }

/* ════════════════════════════════════════════
       CLIENTS / LOGOS
    ════════════════════════════════════════════ */
.logos-wrapper .clients {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    list-style: none;
}

.client img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%) opacity(.5);
    transition: filter .3s;
}

.client:hover img {
    filter: grayscale(0) opacity(1);
}

/* ════════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════════ */
.site-footer {
    background: #0d1e30;
    padding: 60px 0 0;
    color: rgba(255,255,255,.55);
    font-size: 14px;
}

    .site-footer .widget-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: white;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .site-footer .textwidget {
        color: rgba(255,255,255,.5);
        line-height: 1.7;
    }

    .site-footer .contact-info {
        list-style: none;
    }

    .site-footer .contact-info-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 10px;
        color: rgba(255,255,255,.55);
        font-size: 13px;
        line-height: 1.5;
    }

        .site-footer .contact-info-item .fa {
            color: white;
            font-size: 13px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .site-footer .contact-info-item .important {
            color: #fff;
            font-weight: 600;
        }

    .site-footer .menu {
        list-style: none;
    }

        .site-footer .menu li {
            margin-bottom: 8px;
        }

            .site-footer .menu li a {
                font-size: 13px;
                color: rgba(255,255,255,.5);
                display: flex;
                align-items: center;
                gap: 8px;
                transition: color .2s, padding-left .2s;
            }

                .site-footer .menu li a::before {
                    content: '›';
                   /* color: var(--accent);*/
                    font-size: 16px;
                }

                .site-footer .menu li a:hover {
                    color: #fff;
                    padding-left: 4px;
                }

    .site-footer .social.social-minimal {
        display: flex;
        gap: 8px;
        list-style: none;
        margin-top: 12px;
    }

        .site-footer .social.social-minimal li a {
            width: 34px;
            height: 34px;
            background: rgba(255,255,255,.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,.5);
            font-size: 13px;
            transition: all .2s;
        }

            .site-footer .social.social-minimal li a:hover {
                background: var(--accent);
                color: #fff;
            }

.working-hours {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

    .working-hours th, .working-hours td {
        padding: 6px 0;
        border-bottom: 1px solid rgba(255,255,255,.07);
        color: rgba(255,255,255,.55);
    }

    .working-hours th {
        font-weight: 600;
        color: rgba(255,255,255,.7);
        width: 50%;
    }


.post-date {
    font-size: 12px;
    color: rgba(255,255,255,.35);
    display: block;
}

.site-footer .widget_recent_entries ul {
    list-style: none;
}

.site-footer .widget_recent_entries li {
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 8px 0;
}

    .site-footer .widget_recent_entries li a {
        color: rgba(255,255,255,.6);
        font-size: 13px;
        display: block;
        transition: color .2s;
        margin-bottom: 2px;
    }

        .site-footer .widget_recent_entries li a:hover {
            color: var(--accent);
        }

.tnp-subscription input.tnp-email {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.07);
    color: #fff;
    font-size: 13px;
    margin-bottom: 8px;
    outline: none;
}

.tnp-submit {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
    width: 100%;
}

    .tnp-submit:hover {
        background: var(--primary);
    }

.copyright-footer {
    background: #091626;
    padding: 16px 0;
    margin-top: 50px;
}

    .copyright-footer .textwidget {
        font-size: 12px;
        color: rgba(255,255,255,.3);
    }

    .copyright-footer .social {
        display: inline-flex;
        gap: 6px;
        list-style: none;
        justify-content: flex-end;
    }

        .copyright-footer .social li a {
            color: rgba(255,255,255,.3);
            font-size: 13px;
            width: 28px;
            height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: color .2s;
        }

            .copyright-footer .social li a:hover {
                color: var(--accent);
            }

/* ════════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════════ */
@media (max-width: 991px) {
    .top-bar {
        display: none;
    }

    /* Info kutuları ve CTA gizle */
    .hdr-info-item {
        display: none !important;
    }

    .hdr-cta-btn {
        display: none !important;
    }

    /* ── FIX 3: Burger göster — !important ile inline style'ı ez ── */
    .burger {
        display: flex !important;
    }

        .burger span {
            background: var(--primary);
        }

    .header-top-inner {
        min-height: 64px;
    }

    /* ── FIX 4: Nav gizle, burger ile açılınca absolute göster ── */
    .header-nav {
        display: none;
    }

        .header-nav.mobile-open {
            display: block;
            position: absolute; /* .site-header position:relative'e göre */
            left: 0;
            right: 0;
            top: 100%;
            background: #fff;
            box-shadow: 0 8px 24px rgba(0,0,0,.16);
            z-index: 300;
        }

            .header-nav.mobile-open .header-nav-inner {
                flex-direction: column;
            }

    /* Menü linkleri mobil */
    .main-menu {
        flex-direction: column;
        width: 100%;
    }

        .main-menu > li > a {
            color: #222 !important;
            background: none !important;
            border-right: none;
            border-left: none !important;
            border-bottom: 1px solid #f0f0f0;
            padding: 14px 20px;
        }

            .main-menu > li > a::after {
                display: none;
            }

        .main-menu > li.current-menu-item > a {
          /*  color: var(--accent) !important;*/
        }

        /* Sub-menu accordion */
        .main-menu .sub-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            border-top: none;
            margin-left: 20px;
            display: none;
        }

            .main-menu .sub-menu.open {
                display: block;
            }

    /* Arama mobilden gizle */
    .menu-search {
        display: none;
    }

    /* Grid */
    .col-md-3, .col-md-4, .col-md-6,
    .col-md-8, .col-md-9, .col-md-12 {
        width: 100%;
    }
    /* ── FIX 5: col-xs-3 mobilzde de tam genişlik ── */
    .col-xs-3 {
        width: 100%;
    }

    .services-solutions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-desc {
        flex-direction: column;
    }

    .team-desc-side {
        width: 100%;
    }

    .team {
        flex-wrap: wrap;
    }

    .member {
        width: 50%;
        flex: none;
    }

    .testimonial-wrap {
        flex-direction: column;
    }

    .quote-band-inner {
        flex-direction: column;
        text-align: center;
    }

    .row {
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .services-solutions-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .member {
        width: 100%;
    }

    .contact-cards .col-md-4 {
        padding: 6px 12px;
    }

    .cta-dark h1, .cta-dark h2 {
        font-size: 22px;
    }

    .heading-left {
        font-size: 22px;
    }

    .logo-img {
        height: 44px;
    }
}
