/* --- 1. V3 STANDARTLARI (CORE) --- */
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
    --z-green: #0d2e1c;
    --z-gold: #D4AF37;
    --z-text: #444;
    --z-light: #f9f9f9;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Manrope', sans-serif;
    color: var(--z-text);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'El Messiri', sans-serif;
    color: var(--z-green);
    margin-top: 0;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Animasyon */
.z-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.z-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ortak Sınıflar */
.z-section {
    padding: 100px 0;
    position: relative;
}

.z-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.z-tag {
    color: var(--z-gold);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.z-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.z-line {
    width: 60px;
    height: 3px;
    background: var(--z-gold);
    margin: 20px auto 0 auto;
}

.z-center-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.z-desc {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- 2. NAVBAR & ÜST BANT --- */
.z-market-ticker {
    background: var(--z-green);
    color: #fff;
    font-size: 12px;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.z-ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
}

.z-ticker-move {
    display: inline-block;
    animation: ticker 40s linear infinite;
}

.z-ticker-item {
    display: inline-block;
    padding: 0 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.z-ticker-item span {
    color: var(--z-gold);
    font-weight: 700;
    margin-left: 5px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.z-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    height: 100px;
    display: flex;
    align-items: center;
    z-index: 10000;
    border-bottom: 2px solid var(--z-gold);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.z-navbar.has-ticker {
    top: 35px;
}

/* ... (omitting unchanged lines for brevity if tool supported, but replacing block) ... */
.z-nav-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.z-logo-box {
    flex-shrink: 0;
}

.z-logo-box img {
    height: 55px;
    width: auto;
    display: block;
}

.z-nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    height: 100px;
    align-items: center;
}

.z-nav-item {
    position: static;
    height: 100%;
    display: flex;
    align-items: center;
}

.z-nav-link {
    color: var(--z-green);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 5px;
    font-family: 'El Messiri', sans-serif;
    cursor: pointer;
}

.z-nav-link:hover {
    color: var(--z-gold);
}

.z-nav-link i {
    font-size: 10px;
    margin-left: 5px;
    opacity: 0.7;
}

.z-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 3px solid var(--z-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 40px 0;
    z-index: 9998;
}

.z-nav-item:hover .z-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.z-mega-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.z-mega-col h4 {
    color: var(--z-green);
    font-size: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-weight: 700;
}

.z-mega-col h4 i {
    color: var(--z-gold);
    margin-right: 10px;
}

.z-mega-list a {
    color: #666;
    font-size: 14px;
    display: block;
    padding: 6px 0;
    border-bottom: 1px dotted #eee;
}

.z-mega-list a:hover {
    color: var(--z-green);
    font-weight: 600;
    padding-left: 5px;
}

.z-lang-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
    border-left: 1px solid #eee;
    padding-left: 20px;
    flex-shrink: 0;
}

.z-lang-item {
    color: #999;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.z-lang-item.active,
.z-lang-item:hover {
    color: var(--z-green);
}

.z-nav-btn {
    background: var(--z-gold);
    color: var(--z-green);
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-left: 20px;
    flex-shrink: 0;
    cursor: pointer;
    border: none;
}

.z-nav-btn:hover {
    background: var(--z-green);
    color: #fff;
    transform: translateY(-2px);
}

/* Alias for usage in other pages */
.z-btn-gold {
    background: var(--z-gold);
    color: var(--z-green);
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.z-btn-gold:hover {
    background: var(--z-green);
    color: #fff;
}


/* --- 3. HERO SLIDER (INDEX) --- */
.z-hero {
    position: relative;
    height: 90vh;
    margin-top: 135px;
    overflow: hidden;
    background: #000;
}

.z-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.z-slide.active {
    opacity: 1;
}

.z-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.z-hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 800px;
    z-index: 2;
}

.z-hero-tag {
    background: var(--z-gold);
    color: var(--z-green);
    padding: 5px 15px;
    font-weight: 700;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 2px;
}

.z-hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    color: #ffffff !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

.z-hero-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 1;
    line-height: 1.6;
    max-width: 600px;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

.z-btn-hero {
    padding: 18px 40px;
    background: #fff;
    color: var(--z-green);
    font-weight: 700;
    margin-right: 15px;
    border-radius: 4px;
    display: inline-block;
}

.z-btn-hero:hover {
    background: var(--z-gold);
    color: var(--z-green);
}

/* --- 4. HAKKIMIZDA (INDEX & PAGE) --- */
.z-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.z-about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
    text-align: justify;
}

.z-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.z-check-item {
    display: flex;
    align-items: center;
    color: var(--z-green);
    font-weight: 600;
}

.z-check-item i {
    color: var(--z-gold);
    margin-right: 10px;
    font-size: 18px;
}

.z-img-main {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- 5. BİLİŞİM --- */
.z-sector-section {
    padding: 100px 0;
    background: #fff;
}

.z-sector-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.z-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.z-tech-pill {
    background: var(--z-light);
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 600;
    color: var(--z-green);
    border: 1px solid #eee;
    border-radius: 20px;
}

/* --- 6. GIDA ve LOJİSTİK ORTAK KUTU STİLİ (V3) --- */
.z-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.z-srv-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px 30px;
    border-radius: 6px;
    transition: 0.3s;
    height: 100%;
    position: relative;
}

.z-srv-box:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--z-gold);
    transform: translateY(-5px);
}

.z-srv-icon {
    font-size: 32px;
    color: var(--z-green);
    margin-bottom: 20px;
    display: block;
}

.z-srv-head {
    font-size: 18px;
    font-weight: 700;
    color: var(--z-green);
    margin-bottom: 15px;
}

.z-srv-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.z-srv-box::after {
    content: '→';
    position: absolute;
    bottom: 20px;
    right: 30px;
    color: var(--z-gold);
    font-size: 20px;
    opacity: 0;
    transition: 0.3s;
}

.z-srv-box:hover::after {
    opacity: 1;
    right: 20px;
}

.z-partner-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--z-green);
    color: #fff;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: bold;
}

.z-download-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 40px;
    color: var(--z-green);
    font-weight: 700;
    border: 2px solid var(--z-green);
    padding: 12px 30px;
    border-radius: 4px;
    transition: 0.3s;
}

.z-download-btn:hover {
    background: var(--z-green);
    color: #fff;
    text-decoration: none;
}

/* --- 7. SÜREÇ YÖNETİMİ --- */
.z-steps-area {
    padding: 100px 0;
    background: var(--z-green);
    color: #fff;
    text-align: center;
}

.z-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.z-step-item {
    position: relative;
    padding: 20px;
}

.z-step-num {
    font-size: 60px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 0;
    right: 20px;
    line-height: 1;
}

.z-step-icon {
    font-size: 40px;
    color: var(--z-gold);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.z-step-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.z-step-desc {
    font-size: 14px;
    opacity: 0.8;
}

/* --- 8. BAŞARI HİKAYELERİ --- */
.z-cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.z-case-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: start;
    transition: 0.3s;
}

.z-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.z-case-icon {
    font-size: 30px;
    color: var(--z-gold);
    background: rgba(13, 46, 28, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- 9. TEKLİF FORMU & SERTİFİKALAR --- */
.z-quote-section {
    background: var(--z-green);
    color: #fff;
    padding: 80px 0;
}

.z-quote-box {
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    max-width: 1100px;
    margin: 0 auto;
    color: #444;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.z-form-grid-complex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.z-input,
.z-select,
.z-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    background: #fafafa;
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

.z-btn-submit {
    background: var(--z-green);
    color: #fff;
    padding: 18px 50px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    float: right;
    transition: 0.3s;
}

.z-btn-submit:hover {
    background: var(--z-gold);
}

.z-cert-section {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.z-cert-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    opacity: 0.7;
}

.z-cert-item {
    text-align: center;
    filter: grayscale(100%);
    transition: 0.3s;
}

.z-cert-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.z-cert-icon {
    font-size: 36px;
    margin-bottom: 5px;
    color: var(--z-green);
}

.z-cert-name {
    font-size: 12px;
    font-weight: 700;
    display: block;
    color: #555;
}

/* --- 10. FOOTER & WHATSAPP --- */
.z-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: 0.3s;
    animation: pulse-green 2s infinite;
}

.z-whatsapp-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.z-footer {
    background: #05140c;
    color: #999;
    padding: 80px 0 30px 0;
    font-size: 14px;
}

.z-ft-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.z-ft-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 700;
}

.z-ft-links li {
    margin-bottom: 12px;
}

.z-ft-links a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

.z-ft-links a:hover {
    color: var(--z-gold);
    padding-left: 5px;
}

.z-ft-bottom {
    border-top: 1px solid #1a3326;
    padding-top: 25px;
    text-align: center;
    margin-top: 50px;
}

/* =========================================
   HAKKIMIZDA PAGE SPECIFIC
   ========================================= */
.z-page-header {
    height: 400px;
    margin-top: 0;
    /* Changed from 100px */
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.z-header-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.z-page-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.z-breadcrumb {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.z-breadcrumb a {
    color: #fff;
    border-bottom: 1px dotted #fff;
}

.z-content-wrapper {
    padding: 30px 0;
    /* Reduced from 80px */
    background: #fff;
}

.z-layout-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    /* removed align-items: start to allow sticky */
}

.z-sidebar {
    position: sticky;
    top: 20px;
    /* Adjusted from 150px since header is relative */
    align-self: start;
    z-index: 10;
}

.z-sidebar-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.z-sidebar-head {
    background: var(--z-green);
    color: #fff;
    padding: 20px;
    font-family: 'El Messiri', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.z-side-menu li {
    border-bottom: 1px solid #f4f4f4;
}

.z-side-menu li:last-child {
    border-bottom: none;
}

.z-side-menu a {
    display: block;
    padding: 18px 25px;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.z-side-menu a:hover {
    background: #fcfcfc;
    color: var(--z-gold);
    padding-left: 30px;
    border-left: 4px solid var(--z-gold);
}

.z-download-widget {
    background: var(--z-green);
    color: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(45deg, var(--z-green) 0%, #1a4a30 100%);
}

.z-download-widget i {
    font-size: 48px;
    color: var(--z-gold);
    margin-bottom: 20px;
    display: block;
}

.z-download-widget h4 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
}

.z-download-widget p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.5;
    margin-top: 10px;
}

.z-btn-download {
    background: #fff;
    color: var(--z-green);
    padding: 12px 20px;
    border-radius: 2px;
    font-weight: 700;
    font-size: 12px;
    display: inline-block;
    width: 100%;
    transition: 0.3s;
    text-transform: uppercase;
}

.z-btn-download:hover {
    background: var(--z-gold);
    color: #fff;
}

.z-section-block {
    scroll-margin-top: 160px;
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

.z-section-block:last-child {
    border: none;
    margin-bottom: 0;
}

.z-article h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    color: var(--z-green);
}

.z-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--z-gold);
}

.z-article p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

.z-highlight {
    background: #f9f9f9;
    border-left: 5px solid var(--z-gold);
    padding: 30px;
    margin: 30px 0;
    font-family: 'El Messiri', sans-serif;
    font-size: 18px;
    color: var(--z-green);
    font-style: italic;
}

.z-list-custom {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.z-list-custom li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
}

.z-list-custom li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--z-gold);
}

/* ORG CHART */
.z-org-chart {
    margin-top: 50px;
}

.z-org-founder {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.z-org-founder::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 2px;
    height: 40px;
    background: var(--z-gold);
}

.z-org-card {
    padding: 25px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #fff;
    position: relative;
    z-index: 2;
}

.z-org-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.z-org-card i {
    font-size: 28px;
    margin-bottom: 15px;
    display: block;
}

.z-org-card h4 {
    margin: 0 0 5px 0;
    font-family: 'El Messiri', sans-serif;
    font-size: 18px;
    line-height: 1.3;
}

.z-org-card span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    opacity: 0.7;
}

.z-org-card.leader {
    background: var(--z-green);
    color: #fff;
    border: 2px solid var(--z-gold);
    min-width: 250px;
    padding: 30px;
}

.z-org-card.leader i {
    color: var(--z-gold);
}

.z-org-card.leader h4 {
    color: #fff;
    font-size: 22px;
}

.z-org-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.z-org-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: var(--z-gold);
}

.z-dept-col {
    position: relative;
}

.z-dept-col::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 2px;
    height: 20px;
    background: var(--z-gold);
}

.z-org-card.head {
    border: 1px solid #eee;
    border-top: 3px solid var(--z-green);
    color: var(--z-text);
    padding-bottom: 20px;
}

.z-org-card.head i {
    color: var(--z-green);
    opacity: 0.8;
}

.z-org-card.head h4 {
    color: var(--z-green);
    font-weight: 700;
}

.z-sub-dept {
    list-style: none;
    padding: 15px;
    margin: 15px 0 0 0;
    background: #fcfcfc;
    border-radius: 4px;
    border: 1px solid #f9f9f9;
    text-align: left;
}

.z-sub-dept li {
    margin-bottom: 8px;
    font-size: 12px;
    color: #555;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
    font-weight: 600;
}

.z-sub-dept li:last-child {
    margin-bottom: 0;
}

.z-sub-dept i {
    color: var(--z-gold);
    margin-right: 8px;
    font-size: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* =========================================
   ILETISIM PAGE SPECIFIC
   ========================================= */
.z-page-header-contact {
    height: 350px;
    margin-top: 135px;
    background: #0d2e1c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.z-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -60px;
    position: relative;
    z-index: 5;
    margin-bottom: 80px;
}

.z-c-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-bottom: 4px solid var(--z-gold);
}

.z-c-icon {
    width: 80px;
    height: 80px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    color: var(--z-green);
    font-size: 28px;
    transition: 0.3s;
}

.z-c-card:hover .z-c-icon {
    background: var(--z-green);
    color: #fff;
}

.z-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f9f9f9;
}

.z-form-wrapper {
    padding: 80px;
}

.z-map-frame {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
    filter: grayscale(100%);
}

/* MOBİL UYUM */
@media (max-width: 992px) {

    .z-nav-menu,
    .z-nav-btn,
    .z-lang-box,
    .z-btn-gold.nav-only {
        display: none;
    }

    .z-about-grid,
    .z-sector-grid,
    .z-grid-3,
    .z-ft-grid,
    .z-steps-grid,
    .z-form-grid-complex,
    .z-cases-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .z-sector-alt .z-sector-grid {
        display: flex;
        flex-direction: column-reverse;
    }

    .z-hero-title {
        font-size: 36px;
    }

    .z-quote-box {
        padding: 30px;
    }

    .z-cert-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Hakkimizda Mobil */
    .z-layout-grid {
        grid-template-columns: 1fr;
    }

    .z-sidebar {
        position: static;
        order: 2;
        margin-top: 50px;
    }

    .z-org-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .z-org-founder::after,
    .z-org-grid::before,
    .z-dept-col::before {
        display: none;
    }

    .z-dept-col {
        border-left: 2px solid var(--z-gold);
        padding-left: 20px;
    }

    /* Iletisim Mobil */
    .z-contact-cards,
    .z-split-section {
        grid-template-columns: 1fr;
    }

    .z-form-wrapper {
        padding: 40px;
    }

}

/* MOBILE MENU STYLES */
.z-mobile-toggle {
    display: none;
    font-size: 24px;
    color: #333;
    /* Dark color for visibility on white nav */
    cursor: pointer;
    z-index: 10002;
}

.z-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.z-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.z-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden by default */
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 10002;
    transition: 0.4s ease;
    padding: 20px;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.z-mobile-menu.active {
    right: 0;
}

.z-mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--z-gold);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.z-mobile-close {
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.z-mobile-list {
    list-style: none;
    padding: 0;
}

.z-mobile-item {
    border-bottom: 1px solid #eee;
}

.z-mobile-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.z-mobile-link.active {
    color: var(--z-green);
}

.z-mobile-link i {
    transition: 0.3s;
}

.z-mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f9f9f9;
    padding: 0 10px;
}

.z-mobile-dropdown li a {
    display: block;
    padding: 10px 0;
    font-size: 13px;
    color: #555;
    border-bottom: 1px dashed #eee;
}

.z-mobile-dropdown li:last-child a {
    border-bottom: none;
}

@media (max-width: 992px) {
    .z-mobile-toggle {
        display: block;
    }
}

/* PRELOADER STYLES */
#z-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#z-preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.z-preloader-content {
    text-align: center;
    position: relative;
}

.z-preloader-logo {
    height: 60px;
    margin-bottom: 20px;
    animation: pulseLogo 2s infinite;
}

.z-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--z-gold);
    /* Gold color */
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseLogo {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* COOKIE BANNER STYLES */
.z-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    border-top: 1px solid #333;
    padding: 20px 0;
    z-index: 10005;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
}

.z-cookie-banner.active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .z-cookie-banner .z-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .z-cookie-banner .z-container>div {
        margin-left: 0 !important;
    }
}


/* BLOG MODULE STYLES */
.z-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.z-blog-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid #f0f0f0;
}

.z-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.z-blog-thumb {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.z-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.z-blog-card:hover .z-blog-thumb img {
    transform: scale(1.1);
}

.z-blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--z-gold);
    color: var(--z-green);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 2px;
}

.z-blog-body {
    padding: 30px;
}

.z-blog-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.z-blog-meta i {
    color: var(--z-gold);
    margin-right: 5px;
}

.z-blog-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: 0.3s;
}

.z-blog-card:hover h3 {
    color: var(--z-gold);
}

.z-blog-link {
    color: var(--z-green);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.z-blog-link:hover {
    color: var(--z-gold);
}

.z-blog-link i {
    margin-left: 5px;
    transition: 0.3s;
}

.z-blog-link:hover i {
    transform: translateX(5px);
}

/* Sidebar Widgets */
.z-widget {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
}

.z-widget-title {
    font-size: 18px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
    position: relative;
}

.z-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--z-gold);
}

.z-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.z-cat-list li {
    border-bottom: 1px dashed #eee;
}

.z-cat-list li:last-child {
    border-bottom: none;
}

.z-cat-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: #555;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.z-cat-list a:hover {
    color: var(--z-gold);
    padding-left: 5px;
}

.z-recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.z-recent-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.z-recent-post h5 {
    font-size: 14px;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.z-pagination {
    display: flex;
    gap: 10px;
    margin-top: 50px;
    justify-content: center;
}

.z-page-link {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    color: #555;
    font-weight: 700;
    transition: 0.3s;
    border-radius: 2px;
}

.z-page-link:hover,
.z-page-link.active {
    background: var(--z-green);
    color: #fff;
    border-color: var(--z-green);
}

@media (max-width: 768px) {
    .z-blog-grid {
        grid-template-columns: 1fr;
    }
}

/* --- EXACT HEADER MATCH CSS --- */

/* 1. TOP BAR */
.z-header-top {
    font-size: 12px;
    color: #666;
}

.z-top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.z-top-menu a {
    color: #666;
    margin-right: 20px;
    text-decoration: none;
    transition: 0.2s;
}

.z-top-menu a:hover {
    color: #000;
}

.z-top-socials a {
    color: #999;
    margin-left: 15px;
    font-size: 14px;
    transition: 0.2s;
}

.z-top-socials a:hover {
    color: #D4AF37;
}


/* 2. MID HEADER (WIDGETS) */
.z-header-mid {
    padding: 25px 0;
    border-bottom: 1px solid #f4f4f4;
}

.z-header-widgets {
    display: flex;
    gap: 40px;
}

.z-h-widget {
    display: flex;
    align-items: center;
    gap: 15px;
}

.z-hw-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    color: #D4AF37;
    /* Gold Icon */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.z-hw-text {
    display: flex;
    flex-direction: column;
}

.z-hw-text span {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.z-hw-text strong {
    font-size: 13px;
    color: #0d2e1c;
    /* Green Text */
    font-weight: 700;
}


/* 3. NAVBAR */
.z-navbar {
    border-bottom: 3px solid #0d2e1c;
    /* Green Border line as seen in mockup */
}

.z-nav-menu {
    border-top: none;
    /* Reset */
}

.z-nav-link {
    font-size: 13px;
    font-weight: 700;
    color: #444;
    padding: 20px 15px;
    display: block;
}

/* MEGA MENU 5-COL */
.z-mega-menu.full-width {
    width: 1000px;
    /* Wide Container */
    left: -100px;
    /* Offset to center relative to parent if needed */
}

/* Fix for container centeralization if item is far left */
.z-nav-item:hover .z-mega-menu {
    border-top: 3px solid #D4AF37;
}

.z-mega-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.z-mega-list li a {
    padding: 8px 0;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #f9f9f9;
}


/* ACTIONS */
.z-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.z-btn-quote {
    background: #D4AF37;
    /* Gold Button */
    color: #fff;
    padding: 12px 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.z-btn-quote:hover {
    background: #0d2e1c;
}

/* Flag Dropdown */
.z-lang-select {
    position: relative;
    cursor: pointer;
}

.z-current-lang {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #eee;
    padding: 8px 12px;
    border-radius: 4px;
}

.z-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    width: 100%;
    display: none;
}

.z-lang-select:hover .z-lang-dropdown {
    display: block;
}

.z-lang-dropdown a {
    display: block;
    padding: 5px 10px;
    font-size: 12px;
    color: #333;
    text-decoration: none;
}

.z-lang-dropdown a:hover {
    background: #f4f4f4;
}
/* ==============================================
   MOBILE RESPONSIVE MEDIA QUERIES
   ============================================== */

/* Tablet & Below (max-width: 1024px) */
@media (max-width: 1024px) {
    .z-mega-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .z-about-grid,
    .z-sector-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .z-cases-grid {
        grid-template-columns: 1fr;
    }

    .z-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .z-hero-title {
        font-size: 48px;
    }

    .z-hero-content {
        left: 5%;
        max-width: 90%;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .z-title {
        font-size: 28px;
    }

    .z-hero-title {
        font-size: 36px;
    }

    .z-hero-text {
        font-size: 16px;
    }

    .z-navbar {
        height: 70px;
    }

    .z-navbar.has-ticker {
        top: 35px;
    }

    .z-logo-box img {
        height: 40px;
    }

    .z-nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        padding: 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
        gap: 0;
        align-items: flex-start;
    }

    .z-nav-menu.active {
        left: 0;
    }

    .z-nav-item {
        width: 100%;
        height: auto;
        border-bottom: 1px solid #eee;
        padding: 15px 0;
    }

    .z-mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 15px 0 0 20px;
        display: none;
    }

    .z-nav-item.active .z-mega-menu {
        display: block;
    }

    .z-mega-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .z-lang-box,
    .z-nav-btn {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }

    .z-mobile-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--z-green);
        cursor: pointer;
        margin-left: auto;
    }

    .z-hero {
        height: 60vh;
        margin-top: 105px;
    }

    .z-hero.has-ticker {
        margin-top: 140px;
    }

    .z-hero-content {
        left: 5%;
        right: 5%;
        max-width: 90%;
    }

    .z-btn-hero {
        padding: 12px 25px;
        font-size: 13px;
        display: block;
        margin-bottom: 10px;
        text-align: center;
    }

    .z-grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .z-steps-grid {
        grid-template-columns: 1fr;
    }

    .z-form-grid-complex {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .z-quote-box {
        padding: 30px 20px;
    }

    .z-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .z-page-header {
        height: 300px;
    }

    .z-page-title {
        font-size: 32px;
    }

    .z-sidebar-layout {
        grid-template-columns: 1fr;
    }

    .z-sidebar {
        order: 2;
        margin-top: 40px;
    }

    .z-table-responsive {
        overflow-x: auto;
    }

    table {
        font-size: 12px;
    }

    .z-market-ticker {
        font-size: 10px;
        padding: 5px 0;
    }

    .z-ticker-item {
        padding: 0 15px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .z-container {
        width: 95%;
    }

    .z-hero-title {
        font-size: 28px;
    }

    .z-hero-text {
        font-size: 14px;
    }

    .z-title {
        font-size: 24px;
    }

    .z-srv-box {
        padding: 25px 20px;
    }

    .z-quote-box {
        padding: 20px 15px;
    }

    .z-btn-submit,
    .z-btn-gold,
    .z-nav-btn {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    .z-page-header {
        height: 250px;
    }

    .z-page-title {
        font-size: 24px;
    }

    .z-whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* Landscape Mobile Fix */
@media (max-height: 500px) and (orientation: landscape) {
    .z-hero {
        height: 100vh;
    }

    .z-navbar {
        height: 60px;
    }

    .z-logo-box img {
        height: 35px;
    }
}

/* Print Styles */
@media print {
    .z-navbar,
    .z-whatsapp-btn,
    .z-mobile-toggle,
    .z-market-ticker {
        display: none !important;
    }

    .z-hero {
        margin-top: 0;
    }

    body {
        font-size: 12pt;
    }

    .z-section {
        page-break-inside: avoid;
    }
}

/* Mobile Toggle Button - Hidden on Desktop */
.z-mobile-toggle {
    display: none;
}
