:root {
    /* Tüm site için TEK genişlik ayarı */
    --site-max-width: 1320px; 
    
    /* Tüm site için TEK kenar boşluğu */
    --site-padding-x: 20px;
    
    /* Bölümler arası standart boşluk */
    --section-spacing: 100px; 
    /* Renkler */
    --bg-earth: #DCD7C9;
    /* Kum Beji (Ana Zemin) */
    --bg-panel: #ffffff;
    /* Kart/Panel Zemini (Temiz Beyaz) */
    --bg-light-gray: #EAE7DC;
    /* Açık Gri Detaylar */

    --text-main: #2C3639;
    /* Antrasit (Ana Metin) */
    --text-muted: #3F4E4F;
    /* Slate Gri (İkincil Metin) */

    --accent: #A27B5C;
    /* Toprak Kahve (Vurgu) */
    --accent-hover: #8a664b;
    --danger: #d63031;

    /* Tipografi */
    --font-head: 'Ubuntu', sans-serif;
    --font-body: 'Public Sans', sans-serif;

    /* Doku (Senin SVG Kodun) */
    --stone-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");

    /* Yapısal */
    --radius: 16px;
    --shadow-soft: 0 10px 30px rgba(44, 54, 57, 0.08);
    /* Gölgeleri antrasite göre ayarladım */
    --shadow-hover: 0 20px 40px rgba(44, 54, 57, 0.15);
    --border: 1px solid rgba(63, 78, 79, 0.15);
    /* Slate Gri transparan */

    --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.25, 0.8, 0.25, 1);


    /* --- TEMA RENKLERİ --- */
    --bg-color: #DCD7C9;
    /* Kum Beji (Arka Plan) */
    --text-color: #2C3639;
    /* Antrasit (Metin) */
    --accent-dark: #A27B5C;
    /* Toprak Kahve (Vurgu) */
    --accent-light: #3F4E4F;
    /* Slate Gri (İkincil) */

    /* Renk Paleti */
    --zt-color-bg: #DCD7C9;
    /* Açık Zemin */
    --zt-color-text: #2C3639;
    /* Koyu Metin */
    --zt-color-accent: #A27B5C;
    /* Vurgu Rengi (Toprak/Kiremit) */
    --zt-color-dark: #2C3639;
    /* Koyu Zemin/Başlık */
    --zt-color-gray: #EAE7DC;
    /* Gri/Bej Detaylar */
    --zt-color-white: #ffffff;

    /* Tipografi */
    --zt-font-head: 'Ubuntu', sans-serif;
    --zt-font-body: 'Public Sans', sans-serif;

    /* Yapısal Ayarlar */
    --zt-radius: 16px;
    --zt-spacing: 30px;
    --zt-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.07'/%3E%3C/svg%3E");


    --white: #ffffff;
    --black: #000000;
    --gray-light: #EAE7DC;
    --gray-medium: #3F4E4F;
    --gray-dark: #2C3639;
    --news-section-bg: #808080;
    --bg-body: #F0F2F5;
    --header-bg: #DCD7C9;
    /* SOLID BACKGROUND */
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --accent: #A27B5C;
    /* Bronz/Toprak */
    --accent-hover: #8B6245;

    /* Fontlar */
    --heading-font: 'Ubuntu', sans-serif;
    --body-font: 'Public Sans', sans-serif;
    --font-head: 'Ubuntu', sans-serif;
    --font-body: 'Public Sans', sans-serif;

    /* Dokular */
    --stone-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.3'/%3E%3C/svg%3E");

    /* Standartlar */
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;
    --spacing-xxl: 60px;

    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 15px;
    --radius-round: 50%;

    --ease: cubic-bezier(0.23, 1, 0.32, 1);

    --shadow-sm: 0 2px 10px rgba(44, 54, 57, 0.05);
    --shadow-md: 0 5px 15px rgba(44, 54, 57, 0.1);
    --shadow-lg: 0 10px 30px rgba(44, 54, 57, 0.15);
}

/* 1. Global Container (Bütün içerikleri bu hizada tutacağız) */
.std-container {
    width: 100%;
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
    box-sizing: border-box;
    /* Debug için (geçici olarak açıp hizayı görebilirsin) */
    /* border-left: 1px dashed red; border-right: 1px dashed red; */
}

/* 2. Global Section Padding (Bölümlerin alt/üst boşluğu eşit olsun) */
.std-section {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
    position: relative;
    width: 100%;
    overflow: hidden; /* Taşmaları engelle */
}

/* 3. Başlık Standartlaştırma (Her bölümün başlığı aynı boy olsun) */
.std-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.std-section-title {
    font-family: var(--font-head);
    font-size: 2.5rem; /* Standart Başlık Boyutu */
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 15px;
}

.std-section-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
}


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.z-header {
    position: sticky;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1000;
    background-color: var(--header-bg);
    border-bottom: 1px solid rgb(224, 224, 224);
    transition: padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.z-container {
    width: 100%;
    max-width: 1440px;
    margin: 0px auto;
    padding: 0px 40px;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: height 0.4s var(--ease);
}

.z-logo {
    display: flex;
    transition: transform 0.4s var(--ease);
    width: 280px;
    height: 100px;
}

.z-nav-wrap {
    display: flex;
    align-items: center;
    height: 100%;
}

.z-nav-list {
    display: flex;
    gap: 5px;
    height: 100%;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.z-nav-list:hover .z-nav-item {
    opacity: 0.4;
    filter: blur(1px);
}

.z-nav-list .z-nav-item:hover {
    opacity: 1;
    filter: blur(0px);
}

.z-nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0px 18px;
    cursor: pointer;
    transition: 0.3s;
}

.z-nav-link {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--text-main);
    letter-spacing: 0.5px;
    position: relative;
    text-decoration: none;
}

.z-nav-link::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0px;
    width: 0%;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s var(--ease);
}

.z-nav-item:hover .z-nav-link::before {
    width: 100%;
}

.z-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgb(255, 255, 255);
    min-width: 260px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    z-index: 1001;
}

.z-dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgb(255, 255, 255);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.z-nav-item:hover .z-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0px);
}

.z-dd-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    transition: 0.2s;
    text-decoration: none;
}

.z-dd-link i {
    color: rgb(221, 221, 221);
    transition: 0.2s;
}

.z-dd-link:hover {
    background: rgb(247, 245, 242);
    color: var(--accent);
}

.z-dd-link:hover i {
    color: var(--accent);
}

.z-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 40px;
}

.z-cta-btn {
    position: relative;
    overflow: hidden;
    background: var(--text-main);
    color: rgb(255, 255, 255);
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s var(--ease);
    text-decoration: none;
}

.z-cta-btn:hover {
    background: var(--accent);
    padding-right: 34px;
    padding-left: 22px;
    color: rgb(255, 255, 255);
}

.z-cta-btn i {
    transition: 0.3s var(--ease);
}

.z-cta-btn:hover i {
    transform: translateX(5px);
}

.z-hamburger {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: medium;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
}

.z-h-line {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
}

.z-h-line:nth-child(2) {
    width: 32px;
}

.z-hamburger:hover .z-h-line {
    width: 32px;
    background: var(--accent);
}

@keyframes pulse {
    0% {
        box-shadow: rgba(162, 123, 92, 0.7) 0px 0px 0px 0px;
    }

    70% {
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 10px;
    }

    100% {
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
    }
}

@media (max-width: 1411px) {

    .z-nav-wrap,
    .z-header-btn,
    .z-top-bar,
    .z-cta-btn {
        display: none !important;
    }

    .z-hamburger {
        display: flex;
    }

    .z-actions {
        margin-left: auto;
    }
}

@media (max-width: 1200px) {

    .news-3d-card.prev-2,
    .news-3d-card.next-2 {
        opacity: 0;
    }

    .news-3d-card.prev {
        left: 20%;
        transform: translate(-50%) scale(0.9);
    }

    .news-3d-card.next {
        left: 80%;
        transform: translate(-50%) scale(0.9);
    }

    .n3d-prev {
        left: 10px;
    }

    .n3d-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .news-3d-container {
        height: 540px;
    }

    .news-3d-card {
        width: 82vw;
        height: 460px;
    }

    .news-3d-card.active {
        transform: translate(-50%) scale(1);
    }

    .news-3d-card.prev {
        left: -12%;
        transform: translate(0px) scale(0.85);
        opacity: 0.3;
    }

    .news-3d-card.next {
        left: auto;
        right: -12%;
        transform: translate(0px) scale(0.85);
        opacity: 0.3;
    }

    .n3d-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.95);
    }

    .zirve-watermark {
        font-size: 4rem;
        letter-spacing: 5px;
    }

    .zirve-main-heading {
        font-size: 2.2rem;
    }

    .zirve-subtitle-badge {
        font-size: 0.75rem;
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .slider-layout {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .slider-visual-wrapper {
        width: 100%;
        flex: 1 1 auto;
    }

    .single-slide-card {
        height: 500px;
    }

    .news-controls-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .news-nav-buttons {
        justify-content: center;
    }

    .mobile-btn {
        display: inline-flex;
    }

    .desktop-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .zts-prev {
        left: 10px;
        background: rgba(255, 255, 255, 0.8);
    }

    .zts-next {
        right: 10px;
        background: rgba(255, 255, 255, 0.8);
    }
}

@keyframes ztsFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 991px) {
    .zts-title {
        font-size: 2.8rem;
    }

    .zts-content-box {
        left: 5%;
        width: 90%;
        text-align: center;
    }

    .zts-texture-card {
        display: none;
    }

    .zts-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .zts-prev {
        left: 10px;
    }

    .zts-next {
        right: 10px;
    }
}

@media (max-width: 1400px) {
    .arch-menu {
        gap: 20px;
    }

    .arch-link {
        font-size: 14px;
    }

    .arch-btn-outline {
        padding: 10px 20px;
    }
}

@media (max-width: 1200px) {
    .arch-nav {
        display: none;
    }

    .arch-btn-outline {
        display: none;
    }

    .arch-hamburger {
        display: flex;
    }

    .arch-container {
        justify-content: space-between;
    }
}

@keyframes ztItemAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes ztUnderline {
    0% {
        transform: scaleX(0);
        transform-origin: left center 0px;
    }

    100% {
        transform: scaleX(1);
        transform-origin: left center 0px;
    }
}

@media (max-width: 992px) {
    .zt-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zt-sidebar-sticky {
        position: relative;
        top: 0px;
        text-align: center;
    }

    .zt-main-title::after {
        margin: 10px auto 0px;
    }

    .zt-help-card {
        max-width: 400px;
        margin: 0px auto;
    }
}

@media (min-width: 1000px) {
    .about-features {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        background-color: var(--gray-light);
        padding: var(--spacing-xxl) 0;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 20px inset;
    }

    .features-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 30px;
        padding: 20px calc(-580px + 50vw) 40px;
        scroll-snap-type: x mandatory;
        cursor: grab;
    }

    .features-grid:active {
        cursor: grabbing;
    }

    .feature-card {
        flex: 0 0 350px;
        scroll-snap-align: center;
        background-color: var(--white);
    }

    .features-grid::-webkit-scrollbar {
        height: 8px;
    }

    .features-grid::-webkit-scrollbar-track {
        background: rgba(162, 123, 92, 0.1);
        border-radius: 10px;
        margin: 0px calc(-600px + 50vw);
    }

    .features-grid::-webkit-scrollbar-thumb {
        background-color: var(--accent-dark);
        border-radius: 10px;
        border: 2px solid transparent;
        background-clip: content-box;
    }
}

@media (max-width: 999px) {
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-lg);
    }
}

@media (max-width: 992px) {
    .full-width-banner {
        height: 350px;
    }

    .banner-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .full-width-banner {
        height: 300px;
    }

    .banner-title {
        font-size: 2.2rem;
    }

    .about-content-section {
        flex-direction: column;
    }

    .about-text-container,
    .about-image-container {
        flex: 1 1 100%;
    }

    .showroom-section {
        padding: var(--spacing-xl) var(--spacing-lg);
    }
}

@media (max-width: 576px) {
    .full-width-banner {
        height: 250px;
    }

    .banner-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .zt-section {
        padding: 60px 0px;
    }

    .zt-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zt-content-col {
        padding-right: 0px;
    }

    .zt-floating-badge {
        right: 0px;
        bottom: -20px;
        min-width: 100px;
        padding: 15px;
    }

    .zt-badge-big {
        font-size: 1.6rem;
    }

    .zt-title-main,
    .zt-title-light {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .zt-list-card {
        grid-column: span 1;
    }

    .zt-check-list {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .mason-col {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
        margin-bottom: 0px;
    }
}

@keyframes brickDrop {
    0% {
        opacity: 0;
        transform: translateY(-80px) scale(0.9);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

@media (max-width: 768px) {
    .zt-proj-header h1 {
        font-size: 2rem;
    }

    .zt-proj-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .zt-proj-card {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .znews-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .znews-page-section {
        padding: 60px 0px;
    }

    .znews-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .znews-media-box {
        height: 220px;
    }

    .znews-content-box {
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .zread-sidebar {
        width: 100%;
        margin-top: 40px;
    }
}

@media (max-width: 992px) {
    .zread-layout {
        flex-direction: column;
    }

    .zread-main-content,
    .zread-sidebar {
        width: 100%;
        flex: 1 1 auto;
    }

    .zread-main-content {
        padding: 30px;
    }

    .zread-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .zread-meta-row {
        flex-wrap: wrap;
        gap: 15px;
    }

    .zread-footer-area {
        flex-direction: column;
        align-items: flex-start;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .zgal-masonry-wrapper {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .zgal-masonry-wrapper {
        column-count: 1;
    }

    .zgal-filter-nav {
        gap: 10px;
    }

    .zgal-filter-btn {
        padding: 8px 15px;
        font-size: 0.75rem;
    }
}

@media (max-width: 992px) {
    .zcon-layout-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .zcon-form-wrapper {
        padding: 30px;
    }

    .zcon-info-wrapper {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .zcon-section {
        padding: 60px 0px;
    }

    .zcon-row-2 {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .zcon-form-title {
        font-size: 1.5rem;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 992px) {
    .zcol-toolbar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 15px;
    }

    .zcol-cat-tabs {
        justify-content: center;
        width: 100%;
    }

    .zcol-tab-btn {
        flex: 1 1 auto;
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .zcol-color-filter {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .zcol-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .zcol-details {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
        padding: 15px;
    }

    .zcol-details h4 {
        font-size: 1rem;
    }

    .zcol-code {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }

    .zcol-color-btn {
        width: 38px;
        height: 38px;
    }

    .zirve-main-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .prod-showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .prod-main-image {
        height: 400px;
    }

    .prod-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .prod-detail-section {
        padding-top: 100px;
    }

    .prod-main-image {
        height: 300px;
    }

    .prod-title {
        font-size: 1.8rem;
    }

    .zt-proj-card-wrapper {
        flex: 0 0 300px;
    }

    .zt-proj-card {
        height: 400px !important;
    }
}

@media (max-width: 768px) {
    .project-thumbnails {
        gap: 10px;
    }

    .project-thumbnails img {
        height: 80px;
        border-radius: 8px;
    }
}

@media (max-width: 768px) {
    .pd-hero-image-wrapper {
        height: 50vh;
    }

    .pd-texture-link-card {
        bottom: 15px;
        right: 15px;
        padding: 8px;
        max-width: 200px;
    }

    .pd-texture-text {
        font-size: 0.9rem;
    }

    .pd-location-card {
        grid-template-columns: 1fr;
    }

    .pd-project-title {
        font-size: 1.8rem;
    }

    .pd-gallery-item {
        min-width: 280px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .slider-wide-wrapper {
        width: 100%;
        padding: 0px 15px;
        overflow: visible;
    }

    .slider-layout {
        gap: 40px;
    }

    .slider-visual-wrapper {
        min-width: 100%;
        width: 100%;
        flex: 1 1 auto;
        margin-bottom: 20px;
    }

    .single-slide-card {
        height: 380px !important;
        border-radius: 20px;
    }

    .slider-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 15px;
    }

    .prev-btn {
        left: 0px;
        transform: translateX(-10%);
    }

    .next-btn {
        right: 0px;
        transform: translateX(10%);
    }

    .texture-box,
    #slider-texture-box {
        width: 110px !important;
        height: 110px !important;
        min-width: auto;
        min-height: auto;
        border-top-right-radius: 20px;
    }

    .texture-box span,
    #slider-texture-box span {
        font-size: 11px;
        padding: 4px 10px;
    }

    .slider-text-content {
        min-width: 100%;
        padding: 0px 5px;
        text-align: center;
    }

    .slider-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .slider-desc {
        font-size: 15px;
        line-height: 1.5;
        max-width: 100%;
    }

    .slider-meta {
        justify-content: center;
        gap: 15px;
    }

    .meta-box {
        width: 100%;
        min-width: auto;
        padding: 15px;
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .single-slide-card .card-icon {
        width: 50px !important;
        height: 50px !important;
        bottom: 20px !important;
        right: 20px !important;
    }

    .single-slide-card .card-icon svg {
        width: 22px !important;
        height: 22px !important;
    }
}

@media (max-width: 768px) {
    .zts-nav {
        display: none !important;
    }
}

.z-cta-btn {
    position: relative;
    overflow: hidden;
    background: var(--text-main);
    color: rgb(255, 255, 255);
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background-color 0.3s, padding 0.3s;
}

.z-cta-btn i {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.z-cta-btn:hover {
    background-image: linear-gradient(to right, rgb(162, 123, 92) 0%, rgb(214, 164, 112) 51%, rgb(162, 123, 92) 100%);
    padding-right: 34px;
    padding-left: 22px;
}

.z-cta-btn:hover i {
    transform: rotate(-45deg);
}

.z-container {
    max-width: 100%;
    margin: 0px auto;
    padding: 0px 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .z-footer {
        height: auto !important;
        padding: 60px 0px 30px !important;
    }

    .z-footer-main {
        flex-direction: column;
        gap: 50px;
    }

    .z-brand-column {
        max-width: 100%;
        flex: 0 0 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .z-social-row {
        justify-content: center;
    }

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

@media (max-width: 576px) {
    .z-footer {
        padding: 50px 0px 20px !important;
    }

    .z-footer-main {
        gap: 40px;
    }

    .z-links-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .z-contact-col {
        align-items: center;
    }

    .z-footer-cta {
        margin: 10px auto 0px;
    }

    .z-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .z-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {
    .z-footer-main {
        display: flex !important;
        flex-flow: column !important;
        gap: 40px !important;
    }

    .z-brand-column,
    .z-links-grid {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 auto !important;
        text-align: center !important;
    }

    .z-links-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    .z-contact-col {
        align-items: center !important;
    }

    .z-contact-item {
        justify-content: center !important;
    }

    .z-brand-desc {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .z-social-row {
        justify-content: center !important;
    }

    .z-footer-bottom {
        flex-direction: column !important;
        height: auto !important;
        padding-bottom: 20px !important;
        text-align: center !important;
        gap: 15px !important;
    }

    .z-bottom-links {
        justify-content: center !important;
    }
}

@media (max-width: 992px) {
    .z-footer {
        padding-top: 60px !important;
        padding-bottom: 40px !important;
    }

    .z-footer-main {
        height: auto !important;
        margin-bottom: 30px !important;
    }
}

@media (max-width: 768px) {
    .zcol-container {
        padding: 40px 20px;
    }

    .zcol-toolbar {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .zcol-toolbar::-webkit-scrollbar {
        display: none;
    }

    .zcol-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0.5;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulsePrice {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        color: rgb(255, 255, 255);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 960px) {
    .quote-wrapper {
        grid-template-columns: 1fr;
    }

    .quote-visualizer {
        position: static;
        order: -1;
    }

    .preview-image-wrapper {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .zread-title {
        font-size: 1.8rem;
    }


    .zread-quote {
        padding: 20px;
        font-size: 1.1rem;
    }

    .zread-footer-area {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .qt-form-wrapper {
        padding: 25px;
    }
}

@media (min-width: 992px) {
    .qt-surface-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .reverse-mobile {
        flex-direction: column-reverse;
    }

    .qt-preview-card {
        position: static;
        margin-bottom: 30px;
    }

    .qt-preview-stage {
        aspect-ratio: 16 / 9;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--text-color);
    line-height: 1.3;
}

/* --- HEADER TEMEL YAPISI (Başlangıç Hali) --- */
.z-header {
    position: absolute;
    /* Başlangıçta sayfaya yapışmaz, banner üzerinde durur */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    /* Saydam Arka Plan */
    border-radius: 0 0 25px 25px;
    border-bottom: 0px solid rgba(255, 255, 255, 0.1);
    /* Hafif belli belirsiz çizgi */
    transition: all 0.3s ease;
    /* Genel geçiş yumuşaklığı */
}

/* --- SCROLL OLUNCA DEVREYE GİRECEK CLASS (JS İLE EKLENİR) --- */
.z-header.header-fixed {
    position: fixed;
    /* Ekrana yapışır */
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--header-bg);
    /* Senin belirlediğin tema rengini alır */
    border-bottom: 1px solid rgb(224, 224, 224);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Hafif gölge */

    /* Animasyon Ayarları */
    animation: slideDownHeader 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Scroll olunca yüksekliği biraz kısabiliriz (İsteğe bağlı) */
.z-header.header-fixed .z-container {
    height: 80px;
}

/* --- YUKARIDAN AŞAĞI İNME ANİMASYONU --- */
@keyframes slideDownHeader {
    0% {
        transform: translateY(-100%);
        /* Tamamen yukarıda gizli */
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        /* Yerine oturur */
        opacity: 1;
    }
}

/* =================================================================
   HEADER SCROLL RENK GEÇİŞİ (BEYAZ -> NORMAL)
   ================================================================= */

/* 1. Başlangıç Durumu (Sayfa Tepesi - Henüz Scroll Yok) */
/* .header-fixed class'ı OLMAYAN .z-header'ı hedefler */

.z-header:not(.header-fixed) .z-nav-link {
    color: #ffffff !important;
    /* Menü yazılarını beyaz yap */
}

/* Navigasyon altındaki çizgi animasyonunun rengini de beyaz yapalım */
.z-header:not(.header-fixed) .z-nav-link::before {
    background-color: #ffffff !important;
}

/* Logo Resmini Beyaz Yapma (Filter Efekti ile) */
/* Eğer logon siyahsa bu kod onu beyaza çevirir. */
.z-header:not(.header-fixed) .z-logo img {
    filter: brightness(0) invert(1) !important;
    opacity: 0.9;
}

/* Hamburger Menü Çizgileri (Mobil İçin) */
.z-header:not(.header-fixed) .z-h-line {
    background-color: #ffffff !important;
}

/* 2. Scroll Edilince (Aşağı inince) - ESKİ HALİNE DÖNÜŞ */
/* .header-fixed class'ı GELDİĞİNDE */

.z-header.header-fixed .z-nav-link {
    color: var(--text-main) !important;
    /* Kendi koyu rengine dön */
}










.z-header.header-fixed .z-nav-link::before {
    background-color: var(--accent) !important;
    /* Çizgi rengi toprak olsun */
}

.z-header.header-fixed .z-logo img {
    filter: none !important;
    /* Logoyu orijinal rengine döndür */
    opacity: 1;
}

.z-header.header-fixed .z-h-line {
    background-color: var(--text-main) !important;
    /* Hamburger çizgileri koyu olsun */
}

/* =========================================
   YENİ HEADER SOSYAL İKONLARI (Z-ACTIONS)
   ========================================= */

/* İkonları yan yana ve ortalı tutan kapsayıcı */
.z-header-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 15px;
    /* Hamburger menü ile mesafe */
}

/* Yuvarlak İkon Stili */
.z-social-circle {
    position: relative;
    /* Before elementi için referans */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    /* İdeal tıklama alanı */
    height: 58px;
    border-radius: 50%;
    /* Tam yuvarlak */
    font-size: 18px;
    color: #fff;
    /* Varsayılan koyu renk */
    border: 1px solid rgba(255, 255, 255, 0.501);
    /* İnce gri çerçeve */
    background: transparent;
    /* Başlangıçta şeffaf */
    text-decoration: none;
    overflow: hidden;
    /* Dışarı taşan efekti kesmek için */
    transition: all 0.4s var(--ease);
    /* Yumuşak geçiş */
    z-index: 1;
}


.z-header.header-fixed .z-social-circle{
    border-color: #00000095;
    color: var(--text-main);
}

.z-header.header-fixed .z-social-circle:hover{
    color: #ffffff;
    /* İkon rengi beyaz olsun */
    border-color: rgba(0, 0, 0, 0.501);
    /* Çerçeveyi görünmez yap */
}


/* Hileli Gradient Arka Plan (::before ile) */
/* Gradient'e opacity vererek "fade in" efekti yapıyoruz */
.z-social-circle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Senin renklerine uygun gradient */
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    opacity: 0;
    /* Başlangıçta görünmez */
    z-index: -1;
    /* İkonun arkasında kalsın */
    transition: opacity 0.4s ease;
    /* Belirme hızı */
}

/* Hover (Üzerine Gelme) Durumu */
.z-social-circle:hover {
    color: #ffffff;
    /* İkon rengi beyaz olsun */
    border-color: rgba(255, 255, 255, 0.501);
    /* Çerçeveyi görünmez yap */
}

.z-social-circle:hover::before {
    opacity: 1;
    /* Gradient arka planı görünür yap */
}

/* Mobil Uyumluluk: 1290px altında gizle (Hamburger menüde zaten varlar) */
@media (max-width: 1411px) {
    .z-header-socials {
        display: none;
    }
}

/*  CSS Temizleyici */
/* Toplam Kural: 76 | Kalan: 75 */

/*===========
Banner Bölümü 
=============*/
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.full-width-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: var(--spacing-xxl);
    box-shadow: var(--shadow-md);
    border-radius: 0px 0px 40px 40px;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.banner-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background:rgb(27, 27, 27);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-content {
    max-width: 800px;
    padding: var(--spacing-xl);
}

.banner-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    text-shadow: rgba(0, 0, 0, 0.3) 2px 2px 4px;
    margin-top: 70px;
}

.banner-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    font-weight: 300;
    letter-spacing: 0.5px;
}


.about-content-section {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.about-text-container {
    flex: 1 1 600px;
}

.about-title {
    font-size: 2.5rem;
    color: var(--accent-dark);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.about-title::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 80px;
    height: 3px;
    background-color: var(--accent-dark);
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-dark);
}

.highlight-text {
    color: var(--accent-dark);
    font-weight: 600;
}

.about-image-container {
    flex: 1 1 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: start;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.5s var(--ease);
}

.about-image:hover {
    transform: translateY(-5px);
}

.about-features {
    margin-bottom: var(--spacing-xxl);
    position: relative;
}

.features-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: var(--spacing-xl);
    color: var(--accent-light);
}

.feature-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid var(--accent-dark);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: rgba(162, 123, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease);
}

.icon-box svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-dark);
    stroke-width: 2px;
    fill: none;
    transition: all 0.4s var(--ease);
}

.feature-card:hover .icon-box {
    background: var(--accent-dark);
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .icon-box svg {
    stroke: var(--white);
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-md);
    color: var(--gray-dark);
}

.feature-description {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.showroom-section {
    background-color: var(--gray-light);
    padding: var(--spacing-xxl) var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-xxl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.showroom-section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: var(--stone-texture);
    opacity: 0.1;
}

.showroom-title {
    font-size: 2.2rem;
    color: var(--accent-dark);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.showroom-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    color: var(--gray-dark);
    position: relative;
    z-index: 1;
}

.showroom-button {
    display: inline-block;
    background-color: var(--accent-dark);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s var(--ease);
    border: 2px solid var(--accent-dark);
    position: relative;
    z-index: 1;
}

.showroom-button:hover {
    background-color: transparent;
    color: var(--accent-dark);
}

/*  CSS Temizleyici */
/* Toplam Kural: 82 | Kalan: 81 */

/*=========================
Footer
=========================*/
.z-container {
    width: 100%;
    max-width: 1440px;
    margin: 0px auto;
    padding: 0px 40px;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: height 0.4s var(--ease);
}

.z-footer {
    height: auto !important;
    min-height: 370px;
    background-color: rgb(27, 27, 27);
    color: rgb(154, 158, 162);
    font-family: var(--zt-font-body);
    padding: 80px 0px 30px !important;
    margin-top: auto;
    border-top: 4px solid var(--zt-color-accent);
    position: relative;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.z-footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
    width: 100%;
}

.z-brand-column {
    flex: 0 0 35%;
    max-width: 35%;
}

.z-footer-logo {
    display: block;
    margin-bottom: 25px;
}

.z-footer-logo img {
    width: 80%;
    height: auto;
}

.z-brand-desc {
    font-size:15px;
    line-height:20px;
    text-align: justify;
    margin-bottom: 30px;
    color: rgb(176, 179, 184);
}

.z-social-row {
    display: flex;
    gap: 12px;
    font-size: 1.2rem;
}

.z-social-btn {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius:30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zt-color-white);
    text-decoration: none;
    transition: 0.3s;
}

.z-social-btn:hover {
    background-color: var(--zt-color-accent);
    border-color: var(--zt-color-accent);
}

.z-links-grid {
    flex: 1 1 0%;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 30px;
}

.z-col-head {
    font-family: var(--zt-font-head);
    font-size: 1.4rem;
    color: var(--zt-color-white);
    margin-bottom: 25px;
    font-weight: 600;
}

.z-link-list {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.z-link-list li {
    margin-bottom: 12px;
}

.z-link-list a {
    text-decoration: none;
    color: rgb(154, 158, 162);
    font-size: 1.05rem;
    transition: 0.3s;
}

.z-link-list a:hover {
    color: var(--zt-color-accent);
    padding-left: 5px;
}

.z-contact-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.z-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
}

.z-contact-item i {
    color: var(--zt-color-accent);
    margin-top: 5px;
}

.z-contact-item a,
.z-contact-item p {
    color: rgb(176, 179, 184);
    text-decoration: none;
}

.z-footer-cta {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--zt-color-white);
    font-weight: 500;
    text-decoration: none;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--zt-color-accent);
    padding-bottom: 5px;
    width: fit-content;
}

.z-footer {
    height: auto !important;
    min-height: auto !important;
    padding-top: 60px !important;
    padding-bottom: 40px !important;
    overflow: visible !important;
}

.z-footer {
    height: auto !important;
    min-height: auto !important;
    padding-top: 80px !important;
    padding-bottom: 50px !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
}

.z-footer-hr{width: 100%;margin: 10px 0px;border-color: var(--bg-color); border-width:0.5px;}
.z-footer-copy{width: 100%; text-align: center;}


/* =========================================
   MOBİL MENÜ (OFF-CANVAS) YAPISI
   ========================================= */

.z-mobile-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    /* Kapalıyken tıklamayı engelle */
    transition: visibility 0.4s, opacity 0.4s ease;
}

/* Menü Açıldığında (JS ile .active eklenince) */
.z-mobile-wrapper.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* 2. Arka Plan Karartması (Overlay) */
.z-mobile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 54, 57, 0.6);
    /* Hafif koyu, tema uyumlu */
    backdrop-filter: blur(5px);
    /* Arkadaki siteyi bulanıklaştırır */
    -webkit-backdrop-filter: blur(5px);
    transition: opacity 0.4s ease;
}

/* 3. Kayar Menü Paneli (Sağdan gelir) */
.z-mobile-panel {
    position: absolute;
    top: 0;
    right: -100%;
    /* Başlangıçta ekranın sağında gizli */
    width: 85%;
    max-width: 380px;
    height: 100%;
    background-color: var(--bg-panel, #ffffff);
    background-image: var(--stone-texture);
    /* Varsa doku */
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2;
    /* Overlay'in üstünde durmalı */
}

/* Panel Açıldığında */
.z-mobile-wrapper.active .z-mobile-panel {
    right: 0;
    /* İçeri kayar */
}

/* --- Menü Üst Kısım (Logo & Kapat) --- */
.z-m-top {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    gap: 20px;
}

.z-m-logo {
    height: 45px;
    width: auto;
    max-width: 70%;
    object-fit: contain;
}

.z-m-close-btn {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: var(--bg-light-gray, #f0f0f0);
    color: var(--text-main, #333);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.z-m-close-btn:hover {
    background: var(--accent, #A27B5C);
    color: #ffffff;
    transform: rotate(90deg) scale(1.1);
    border-color: var(--accent, #A27B5C);
    box-shadow: 0 5px 15px rgba(162, 123, 92, 0.4);
}

/* --- Menü İçerik Alanı (Scroll edilebilir) --- */
.z-m-content {
    flex: 1 1 0%;
    overflow-y: auto;
    /* Dikey scroll */
    padding: 20px 25px;
}

/* Link Stilleri */
.z-m-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-head, sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main, #333);
    padding: 16px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: color 0.3s;
}

.z-m-link i {
    font-size: 0.9rem;
    color: #bbbbbb;
    transition: transform 0.3s;
}

.z-m-link:hover,
.z-m-link.active {
    color: var(--accent, #A27B5C);
}

/* --- Alt Menü (Accordion Yapısı) --- */
.z-m-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(162, 123, 92, 0.04);
    border-radius: 8px;
    margin-bottom: 5px;
}

/* JS ile 'open' class'ı eklenince açılır */
.z-m-item-group.open .z-m-submenu {
    max-height: 500px;
    /* Yeterince büyük bir değer */
}

.z-m-item-group.open .z-m-link i {
    transform: rotate(180deg);
    color: var(--accent, #A27B5C);
}

.z-m-submenu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-muted, #666);
    font-size: 0.95rem;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: 0.2s;
    font-weight: 500;
}

.z-m-submenu a:hover {
    color: var(--accent, #A27B5C);
    padding-left: 25px;
    border-left-color: var(--accent, #A27B5C);
    background: rgba(255, 255, 255, 0.6);
}

/* --- Menü Alt Kısım (CTA ve Sosyal Medya) --- */
.z-m-bottom {
    padding: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.z-m-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--text-main, #333);
    color: #ffffff;
    padding: 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
    margin-bottom: 20px;
    font-family: var(--font-head, sans-serif);
}

.z-m-cta:hover {
    background: var(--accent, #A27B5C);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(162, 123, 92, 0.3);
}

.z-m-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.z-m-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main, #333);
    transition: 0.3s;
    font-size: 1.1rem;
    text-decoration: none;
}

.z-m-social a:hover {
    background: var(--accent, #A27B5C);
    color: #ffffff;
    border-color: var(--accent, #A27B5C);
    transform: translateY(-3px);
}



/*=============== 
Kalitemiz Sayfası
================*/
@keyframes pulse {
    0% {
        box-shadow: rgba(162, 123, 92, 0.7) 0px 0px 0px 0px;
    }

    70% {
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 10px;
    }

    100% {
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
    }
}



.zt-wrapper {
    font-family: var(--zt-font-body);
    line-height: 1.6;
    color: var(--zt-color-text);
    background-color: var(--zt-color-bg);
    background-image: var(--zt-texture);
}

.zt-wrapper * {
    box-sizing: border-box;
}

.zt-section {
    padding: 80px 0px;
    position: relative;
}



.zt-subtitle {
    display: inline-block;
    font-family: var(--zt-font-head);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--zt-color-accent);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--zt-color-accent);
    padding-bottom: 5px;
}

.zt-title-main {
    font-family: var(--zt-font-head);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--zt-color-dark);
    margin: 0px 0px 25px;
    line-height: 1.2;
}

.zt-text-intro {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.zt-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zt-content-col {
    padding-right: 20px;
}

.zt-detail-p {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid rgba(162, 123, 92, 0.3);
    font-size: 0.95rem;
    color: rgb(68, 68, 68);
}

.zt-detail-p strong {
    display: block;
    margin-bottom: 5px;
    font-family: var(--zt-font-head);
    font-size: 1.05rem;
    color: var(--zt-color-accent);
}

.zt-image-col {
    position: relative;
}

.zt-img-frame {
    position: relative;
    z-index: 1;
}

.zt-responsive-img {
    width: 100%;
    height: auto;
    border-radius: var(--zt-radius);
    display: block;
    box-shadow: rgba(44, 54, 57, 0.15) 0px 15px 40px -10px;
    border: 8px solid var(--zt-color-gray);
}

/*============== 
Kultur Tuğla 
===============*/
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.zcol-container {
    max-width: 1400px;
    margin: 0px auto;
    padding: 0px 20px;
}

.zcol-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background: rgb(209, 204, 191);
    border-radius: 12px 12px 0px 0px;
    box-shadow: rgba(0, 0, 0, 0.03) 0px 5px 20px;
    border: 5px solid rgba(0, 0, 0, 0.03);
}

.zcol-grid {
    display: grid;
    padding: 15px;
    border-radius: 0px 0px 12px 12px;
    background-color: rgb(209, 204, 191);
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.zcol-container {
    max-width: 1800px;
    margin: 0px auto;
    padding: 70px 30px;
}

.zcol-toolbar {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.zcol-filter-btn {
    border: medium;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.zcol-filter-btn:hover {
    color: var(--accent);
    background-color: rgba(255, 255, 255, 0.5);
}

.zcol-filter-btn.active {
    background-color: var(--accent);
    color: rgb(255, 255, 255);
    box-shadow: rgba(162, 123, 92, 0.3) 0px 5px 15px;
}

.zcol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.zcol-card {
    background-color: var(--bg-panel);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s, box-shadow 0.4s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.zcol-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.zcol-img-box {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
}

.zcol-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.zcol-card:hover .zcol-img-box img {
    transform: scale(1.08);
}

.zcol-content {
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.zcol-cat-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.zcol-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0px 0px 20px;
    line-height: 1.3;
}

.zcol-link-text {
    margin-top: auto;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s, gap 0.3s;
}

.zcol-card:hover .zcol-link-text {
    color: var(--accent);
    gap: 12px;
}

/*==================
Projeler Sayfası
=================== */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.zt-proj-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: var(--site-max-width);
    margin: 0px auto;
    padding: 20px 20px 100px;
}

.zt-proj-card {
    position: relative;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
    transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}

.zt-proj-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.zt-proj-bg-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.zt-proj-bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.6s var(--ease);
    transform-origin: center center 0px;
}

.zt-proj-card:hover .zt-proj-bg-wrapper img {
    transform: scale(1.08);
}

.zt-proj-overlay {
    background: linear-gradient(to top, rgba(44, 54, 57, 0.9) 0%, rgba(44, 54, 57, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    inset: 0px;
    z-index: 1;
    opacity: 0.6;
    transition: opacity 0.8s ease-out;
}

.zt-proj-card:hover .zt-proj-overlay {
    opacity: 0.9;
}

.zt-proj-content {
    position: absolute;
    top: 40px;
    left: 30px;
    right: 30px;
    z-index: 30;
    opacity: 0;
    transform: translateY(-15px);
    transition-delay: 0.1s;
    pointer-events: none;
}

.zt-proj-card:hover .zt-proj-content {
    opacity: 1;
    transform: translateY(0px);
}

.zt-proj-content h3 {
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 4px 20px;
}

.zt-proj-content p {
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--gray-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 5px;
    display: inline-block;
}

.zt-proj-texture-box {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100px;
    height: 100px;
    background-color: var(--gray-dark);
    z-index: 20;
    transform: translateY(100%);
    transition: transform 0.6s var(--ease), width 0.4s var(--ease), height 0.4s var(--ease);
    border-top-right-radius: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: rgba(0, 0, 0, 0.2) 5px -5px 20px;
}

.zt-proj-card:hover .zt-proj-texture-box {
    transform: translateY(0px);
}

.zt-proj-texture-box:hover {
    width: 160px;
    height: 160px;
    border-top-right-radius: 30px;
    border-color: var(--accent);
}

.zt-proj-texture-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s;
    opacity: 0.8;
}

.zt-proj-texture-box:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.zt-proj-texture-box span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--heading-font);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    pointer-events: none;
    transition: opacity 0.3s;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 12px;
    border-radius: 20px;
}

.zt-proj-texture-box:hover span {
    opacity: 0;
}

.zt-proj-icon {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 6;
    transition: all 0.5s var(--ease);
}

.zt-proj-icon svg {
    stroke-width: 1.5px;
    width: 28px;
    height: 28px;
    transition: transform 0.5s var(--ease);
}

.zt-proj-icon:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: rgba(162, 123, 92, 0.4) 0px 10px 25px;
}

.zt-proj-icon:hover svg {
    transform: rotate(-45deg);
}

.zt-proj-card-wrapper,
.zt-proj-card {
    user-select: none;
}

/*===============
Haberler Kısmı
===============*/
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.znews-page-section {
    background-color: var(--bg-color);
    padding: 100px 0px 80px;
    min-height: 100vh;
    position: relative;
}

.znews-container {
    max-width: 1400px;
    margin: 0px auto;
    padding: 0px 20px;
}

.znews-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.znews-card {
    background-color: rgb(255, 255, 255);
    border-radius: var(--zt-radius, 16px);
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 15px;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(162, 123, 92, 0.1);
    position: relative;
}

.znews-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(44, 54, 57, 0.15) 0px 15px 30px;
    border-color: var(--accent);
}

.znews-media-box {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.znews-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.znews-card:hover .znews-img {
    transform: scale(1.1);
}

.znews-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 20px;
    z-index: 3;
    overflow: hidden;
    min-width: 65px;
    transition: transform 0.3s;
}

.znews-card:hover .znews-date-badge {
    transform: scale(1.05);
}

.znews-month-box {
    background-color: var(--accent);
    color: rgb(255, 255, 255);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 0px;
    font-family: var(--font-body);
}

.znews-day {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    padding-top: 6px;
    font-family: var(--font-head);
}

.znews-year {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    padding-bottom: 8px;
    font-family: var(--font-body);
}

.znews-content-box {
    padding: 25px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.znews-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: var(--font-head);
    font-weight: 700;
}

.znews-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: 0.3s;
}

.znews-title a:hover {
    color: var(--accent);
}

.znews-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -moz-box-orient: vertical;
    overflow: hidden;
}

.znews-read-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.znews-read-btn i {
    transition: 0.3s;
}

.znews-read-btn:hover i {
    transform: translateX(5px);
}

/*=====================
Galeri Sayfası Tasarımı 
=======================*/
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.zgal-section {
    background-color: var(--bg-color);
    padding: 0px;
    min-height: 100vh;
}

.zgal-container {
    max-width: 1400px;
    margin: 0px auto;
    padding: 0px 20px;
}

.zgal-masonry-wrapper {
    column-count: 3;
    column-gap: 30px;
}

.zgal-item {
    break-inside: avoid;
    margin-bottom: 30px;
    border-radius: var(--zt-radius, 16px);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    transition: transform 0.3s;
}

.zgal-img-box {
    position: relative;
    width: 100%;
}

.zgal-img-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.zgal-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(44, 54, 57, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.zgal-overlay i {
    color: rgb(255, 255, 255);
    font-size: 2rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.zgal-overlay span {
    color: rgb(255, 255, 255);
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.3s 0.1s;
}

.zgal-item:hover .zgal-overlay {
    opacity: 1;
}

.zgal-item:hover img {
    transform: scale(1.1);
}

.zgal-item:hover .zgal-overlay i,
.zgal-item:hover .zgal-overlay span {
    transform: translateY(0px);
}

.zgal-lightbox {
    position: fixed;
    z-index: 9999;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.zgal-lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 0px 50px;
}

.zgal-close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    color: rgb(255, 255, 255);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.zgal-close-btn:hover {
    color: var(--accent);
}

.zgal-caption {
    margin-top: 20px;
    color: rgb(204, 204, 204);
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-align: center;
}



/*====================================================
Kurumsal Medya Koeleksiyonlar Sayfasındaki Kutu Yapısı 
=====================================================*/


.ztc-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.ztc-col-lg-4 {
    width: 44.444%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.ztc-col-md-6 {
    width: 50%;
}

@media (max-width: 992px) {
    .ztc-col-lg-4 {
        width: 50%;
    }
}

@media (max-width: 768px) {

    .ztc-col-lg-4,
    .ztc-col-md-6 {
        width: 100%;
    }
}

.ztc-box {
    background: #ffffff80;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 30px 25px;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    border: 1px solid rgba(63, 78, 79, 0.08);
}

.ztc-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(162, 123, 92, 0.15);
}

.ztc-box-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ztc-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 15px;
    font-family: var(--font-head);
}

.ztc-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ztc-box:hover .ztc-title a {
    color: var(--accent);
}

.ztc-link {
    margin-top: auto;
}

.ztc-link a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.ztc-link a:hover {
    color: var(--accent-hover);
}

.ztc-link i {
    margin-left: 8px;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.ztc-link a:hover i {
    transform: translateX(3px);
}

/* Kategori etiketi - sade ve küçük */
.ztc-category {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(63, 78, 79, 0.05);
    padding: 2px 10px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Başlık stili */
.ztc-header {
    text-align: center;
    margin-bottom: 50px;
}

.ztc-main-title {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.ztc-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer */
.ztc-footer-note {
    text-align: center;
    margin-top: 50px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

/*===========================
Tuğlaları Listeleme Kısmı 
============================*/
.zcol-container {
    max-width: 1400px;
    margin: 0px auto;
    padding: 0px 20px;
}

.zcol-grid {
    display: grid;
    padding: 15px;
    border-radius: 0px 0px 12px 12px;
    background-color: var(--zt-bg);
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .zcol-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .zcol-container {
        padding: 40px 20px;
    }

    .zcol-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* =========================================
   KATEGORİ BAŞLIKLARI VE GRUPLAMA (YENİ)
   ========================================= */

/* Her bir kategori grubunu saran kapsayıcı */
.zcol-group-wrapper {
    margin-bottom: 80px;
    /* Gruplar arası boşluk */
    position: relative;
}

/* Son grubun alt boşluğunu sıfırlar */
.zcol-group-wrapper:last-child {
    margin-bottom: 0;
}

/* Başlık Alanı (Sağa Yaslı) */
.zcol-cat-header {
    text-align: left;
    margin-bottom: 30px;
    padding-right: 10px;
    position: relative;
    z-index: 2;
}

/* Küçük üst başlık (Örn: KOLEKSİYON) */
.zcol-cat-subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    /* Toprak Rengi */
    text-transform: uppercase;
    margin-bottom: 5px;
    font-family: var(--font-body);
}

/* Ana Başlık (Örn: Kültür Tuğlaları) */
.zcol-cat-title {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

/* Başlığın altındaki şık çizgi animasyonu */
.zcol-cat-title::after {
    content: '';
    display: block;
    width: 60px;
    /* Çizgi uzunluğu */
    height: 4px;
    background-color: var(--accent);
    margin-top: 10px;
    margin-left: auto;
    /* Sağa yaslamak için */
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Hover durumunda çizgi uzasın (Opsiyonel estetik) */
.zcol-group-wrapper:hover .zcol-cat-title::after {
    width: 100%;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .zcol-cat-title {
        font-size: 1.6rem;
    }

    .zcol-group-wrapper {
        margin-bottom: 50px;
    }
}




/*============================ 
İndex İçindeki Bütün Bölümler 
=============================*/


.container {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0 var(--spacing-md);
}

.text-center {
    text-align: center;
}

.section {
    padding: var(--spacing-xxl) 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    display: block;
    width: 50%;
    height: 3px;
    background-color: var(--white);
    margin-top: 10px;
}

.z-mobile-overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgb(14, 14, 14);
    color: rgb(255, 255, 255);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px) scale(0.98);
    transition: all 0.5s var(--ease);
    display: flex;
    flex-direction: column;
}

@keyframes pulse {
    0% {
        box-shadow: rgba(162, 123, 92, 0.7) 0px 0px 0px 0px;
    }

    70% {
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 10px;
    }

    100% {
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
    }
}

.news-3d-section {
    background: linear-gradient(135deg, rgb(234, 231, 220) 0%, rgb(128, 128, 128) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0px;
}

.news-3d-section::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(162, 123, 92, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.news-3d-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 600px;
    margin: 0px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
    z-index: 2;
}

.news-3d-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.news-3d-card {
    position: absolute;
    width: 340px;
    height: 500px;
    background: rgb(255, 255, 255);
    border-radius: 24px;
    box-shadow: rgba(44, 54, 57, 0.1) 0px 15px 35px;
    overflow: hidden;
    transition: 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
    z-index: 0;
    left: 50%;
    transform: translate(-50%, 0px) scale(0.5);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
}

.news-3d-img-box {
    position: relative;
    height: 52%;
    overflow: hidden;
    border-bottom: 4px solid var(--accent);
}

.news-3d-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.news-3d-card:hover .news-3d-img-box img {
    transform: scale(1.15);
}

.n3d-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 20px;
    z-index: 3;
    overflow: hidden;
    min-width: 65px;
    transition: transform 0.3s;
}

.news-3d-card:hover .n3d-date-badge {
    transform: translateY(-5px);
}

.n3d-date-badge .month-box {
    background-color: var(--accent);
    color: rgb(255, 255, 255);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 0px;
}

.n3d-date-badge .day {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    padding-top: 6px;
}

.n3d-date-badge .year {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    padding-bottom: 8px;
}

.news-3d-content {
    padding: 30px 25px;
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
}

.news-3d-content h3 {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.news-3d-card:hover .news-3d-content h3 {
    color: var(--accent);
}

.news-3d-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.n3d-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
    margin-top: auto;
    border-bottom: 2px solid transparent;
    width: fit-content;
}

.n3d-btn:hover {
    color: var(--text-main);
    border-bottom-color: var(--accent);
    gap: 15px;
}

.n3d-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgb(255, 255, 255);
    color: var(--text-muted);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 100;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 25px;
}

.n3d-nav-btn:hover {
    background-color: var(--accent);
    color: rgb(255, 255, 255);
    transform: translateY(-50%) scale(1.15);
    box-shadow: rgba(162, 123, 92, 0.4) 0px 10px 30px;
    border-color: var(--accent);
}

.n3d-prev {
    left: 30px;
}

.n3d-next {
    right: 30px;
}

@media (max-width: 1200px) {
    .n3d-prev {
        left: 10px;
    }

    .n3d-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .news-3d-container {
        height: 540px;
    }

    .news-3d-card {
        width: 82vw;
        height: 460px;
    }

    .n3d-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.95);
    }
}

.project-slider-section {
    padding: 100px 0px;
    background-color: var(--bg-color);
    overflow: hidden;
}

.slider-wide-wrapper {
    width: 92%;
    max-width: 1800px;
    margin: 0px auto;
    padding: 0px 15px;
}

.slider-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.slider-visual-wrapper {
    flex: 1.2 1 0%;
    min-width: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-slide-card {
    width: 100%;
    height: 750px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 30px 60px;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.4, 1), opacity 0.5s;
}

.card-bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.texture-box {
    position: absolute;
    bottom: 0px;
    left: 0px;
    margin: 0px;
    width: 25%;
    height: 25%;
    min-width: 160px;
    min-height: 160px;
    background-color: var(--gray-dark);
    z-index: 20;
    border-top-right-radius: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.3) 5px -5px 20px;
}

.texture-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.texture-box:hover {
    width: 80%;
    height: 80%;
    border-top-right-radius: 40px;
    border-top: 3px solid var(--accent-dark);
    border-right: 3px solid var(--accent-dark);
    z-index: 50;
    box-shadow: rgba(0, 0, 0, 0.5) 10px -10px 40px;
}

.texture-box:hover img {
    transform: scale(1.05);
}

.texture-box span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    pointer-events: none;
    transition: opacity 0.3s;
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 15px;
    border-radius: 20px;
    white-space: nowrap;
}

.texture-box:hover span {
    opacity: 0;
}

.card-content {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    z-index: 30;
    opacity: 0;
    transform: translateY(-20px);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}

.single-slide-card:hover .card-content {
    opacity: 1;
    transform: translateY(0px);
}

.card-content h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 4px 10px;
}

.card-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent-dark);
    padding-bottom: 5px;
    display: inline-block;
}

.card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    inset: 0px;
    z-index: 1;
}

.slider-text-content {
    flex: 1 1 0%;
    min-width: 350px;
}

.slider-title {
    font-size: 64px;
    color: var(--gray-dark);
    line-height: 1.05;
    margin-bottom: 35px;
    font-weight: 800;
}

.slider-desc {
    color: var(--gray-medium);
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 90%;
}

.slider-nav-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 35px;
    color: var(--gray-dark);
    cursor: pointer;
    z-index: 10;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: 0.3s;
}

.slider-nav-btn:hover {
    background-color: var(--accent-dark);
    color: var(--white);
    transform: scale(1.1);
}

.prev-btn {
    left: -35px;
}

.next-btn {
    right: -35px;
}

.slider-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.meta-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--white);
    padding: 20px 35px;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
    border-left: 6px solid var(--accent-dark);
    min-width: 240px;
    transition: transform 0.3s;
}

.meta-box:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 15px 40px;
}

.meta-icon {
    width: 55px;
    height: 55px;
    background-color: rgba(162, 123, 92, 0.1);
    color: var(--accent-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.meta-info {
    display: flex;
    flex-direction: column;
}

.meta-caption {
    font-size: 13px;
    text-transform: uppercase;
    color: rgb(136, 136, 136);
    font-weight: 700;
    margin-bottom: 4px;
}

.meta-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-dark);
}

.process-premium-section {
    background-color: var(--text-color);
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
}

.project-slide {
    display: none; /* JS yüklenene kadar veya JS yoksa varsayılan gizli */
}

/* Animasyon */
.fade {
  animation-name: fade;
  animation-duration: 0.8s;
}

@keyframes fade {
  from {opacity: 0.4} 
  to {opacity: 1}
}

.process-premium-section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.process-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.process-subtitle {
    display: block;
    color: var(--accent-dark);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.process-header h2 {
    color: var(--bg-color);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.process-header h2 span {
    color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(5px);
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px);
    border-color: rgba(162, 123, 92, 0.3);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 15px 40px;
}

.step-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    font-family: var(--heading-font);
    line-height: 1;
    transition: 0.3s;
}

.process-card:hover .step-badge {
    color: rgba(162, 123, 92, 0.1);
    transform: scale(1.1);
}

.process-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-dark);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 25px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 20px;
    transition: 0.3s;
}

.process-card:hover .process-icon {
    transform: scale(1.1);
    background-color: var(--white);
    color: var(--accent-dark);
}

.process-card h3 {
    color: var(--bg-color);
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0px;
}

.features-premium-section {
    padding: 0px 0px 100px;
    background-color: var(--bg-color);
    position: relative;
    z-index: 5;
}

.features-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feat-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 30px;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.feat-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 20px 50px;
    border-color: var(--accent-dark);
}

.feat-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(162, 123, 92, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent-dark);
    flex-shrink: 0;
    transition: 0.3s;
}

.feat-card:hover .feat-icon-wrapper {
    background-color: var(--accent-dark);
    color: var(--white);
}

.feat-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.feat-content p {
    font-size: 16px;
    color: var(--gray-medium);
    line-height: 1.6;
    margin: 0px;
    opacity: 0.9;
}

.feat-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 120px;
    color: rgba(0, 0, 0, 0.03);
    transform: rotate(-15deg);
    transition: 0.5s;
    pointer-events: none;
}

.feat-card:hover .feat-bg-icon {
    color: rgba(162, 123, 92, 0.08);
    transform: rotate(0deg) scale(1.1);
    bottom: -10px;
    right: -10px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 2px solid var(--accent-dark);
    border-radius: 50px;
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.3s;
}

.view-all-btn:hover {
    background-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.collection-card {
    position: relative;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
    background-color: var(--white);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 20px 40px;
}

.collection-card .card-bg-wrapper {
    width: 100%;
    height: 100%;
    transition: transform 1.5s;
}

.collection-card:hover .card-bg-wrapper {
    transform: scale(1.1);
}

.collection-card .card-overlay {
    position: absolute;
    inset: 0px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.collection-card:hover .card-overlay {
    opacity: 1;
}

.collection-card .card-content {
    position: absolute;
    top: 30px;
    left: 20px;
    right: 20px;
    z-index: 2;
    opacity: 0;
    transform: translateY(-15px);
    transition: 0.5s 0.1s;
}

.collection-card:hover .card-content {
    opacity: 1;
    transform: translateY(0px);
}

.collection-card .texture-box {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 120px;
    height: 120px;
    background-color: var(--gray-dark);
    z-index: 3;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top-right-radius: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.collection-card:hover .texture-box {
    transform: translateY(0px);
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.zts-main-wrapper {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background-color: rgb(0, 0, 0);
}

.zts-item {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    z-index: 1;
}

.zts-item.zts-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.zts-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    filter: brightness(0.55);
}

.zts-content-box {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 650px;
    z-index: 5;
    color: rgb(255, 255, 255);
}

.zts-title {
    font-size: 3.8rem;
    font-weight: 700;
    color: rgb(255, 255, 255);
    text-shadow: rgba(0, 0, 0, 0.8) 3px 3px 6px;
}

.zts-desc {
    font-size: 1.25rem;
    color: rgb(224, 224, 224);
    text-shadow: rgba(0, 0, 0, 0.8) 1px 1px 3px;
}

.zts-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-dark);
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
    border: 1px solid var(--accent-dark);
    color: rgb(255, 255, 255) !important;
}

.zts-btn:hover {
    background-color: transparent;
    color: var(--accent-dark) !important;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 2px solid var(--white);
    border-radius: 50px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.3s;
    text-decoration: none;
}

.view-all-btn:hover {
    background-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.project-slider-section {
    padding: 100px 0px;
    background-color: var(--bg-color);
    overflow: hidden;
}

.slider-wide-wrapper {
    width: 92%;
    max-width: 1800px;
    margin: 0px auto;
    padding: 0px 15px;
}

.slider-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.slider-visual-wrapper {
    flex: 1.2 1 0%;
    min-width: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 35px;
    color: var(--gray-dark);
    cursor: pointer;
    z-index: 10;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: 0.3s;
}

.slider-nav-btn:hover {
    background-color: var(--accent-dark);
    color: var(--white);
    transform: scale(1.1);
}

.prev-btn {
    left: -35px;
}

.next-btn {
    right: -35px;
}

.single-slide-card {
    width: 100%;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 30px 60px;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.4, 1), opacity 0.5s;
}

.card-bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.texture-box {
    position: absolute;
    bottom: 0px;
    left: 0px;
    margin: 0px;
    width: 25%;
    height: 25%;
    min-width: 160px;
    min-height: 160px;
    background-color: var(--gray-dark);
    z-index: 20;
    border-top-right-radius: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.3) 5px -5px 20px;
}

.texture-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.texture-box:hover {
    width: 80%;
    height: 80%;
    border-top-right-radius: 40px;
    border-top: 3px solid var(--accent-dark);
    border-right: 3px solid var(--accent-dark);
    z-index: 50;
    box-shadow: rgba(0, 0, 0, 0.5) 10px -10px 40px;
}

.texture-box:hover img {
    transform: scale(1.05);
}

.texture-box span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    pointer-events: none;
    transition: opacity 0.3s;
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 15px;
    border-radius: 20px;
    white-space: nowrap;
}

.texture-box:hover span {
    opacity: 0;
}

.card-content {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    z-index: 30;
    opacity: 0;
    transform: translateY(-20px);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}

.single-slide-card:hover .card-content {
    opacity: 1;
    transform: translateY(0px);
}

.card-content h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 4px 10px;
}

.card-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent-dark);
    padding-bottom: 5px;
    display: inline-block;
}

.card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    inset: 0px;
    z-index: 1;
}

.slider-text-content {
    flex: 1 1 0%;
    min-width: 350px;
}

.slider-title {
    font-size: 56px;
    color: var(--gray-dark);
    line-height: 1.05;
    margin-bottom: 25px;
    font-weight: 800;
}

.slider-desc {
    color: var(--gray-medium);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 90%;
}

.slider-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.meta-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--white);
    padding: 15px 30px;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
    border-left: 6px solid var(--accent-dark);
    min-width: 220px;
    transition: transform 0.3s;
}

.meta-box:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 15px 40px;
}

.meta-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(162, 123, 92, 0.1);
    color: var(--accent-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.meta-info {
    display: flex;
    flex-direction: column;
}

.meta-caption {
    font-size: 12px;
    text-transform: uppercase;
    color: rgb(136, 136, 136);
    font-weight: 700;
    margin-bottom: 4px;
}

.meta-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-dark);
}

@media (max-width: 992px) {
    .slider-layout {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .slider-visual-wrapper {
        width: 100%;
        flex: 1 1 auto;
    }

    .single-slide-card {
        height: 500px;
    }
}

.zts-main-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background-color: var(--text-color);
    font-family: var(--heading-font);
}

.zts-item {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    z-index: 1;
}

.zts-item.zts-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.zts-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    filter: brightness(0.6);
    transform: scale(1.1);
    transition: transform 6s;
}

.zts-item.zts-active .zts-bg {
    transform: scale(1);
}

.zts-content-box {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 700px;
    z-index: 5;
    color: var(--white);
    text-shadow: rgba(0, 0, 0, 0.5) 0px 10px 30px;
}

.zts-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s 0.3s;
}

.zts-desc {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--body-font);
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s 0.5s;
}

.zts-item.zts-active .zts-title,
.zts-item.zts-active .zts-desc {
    opacity: 1;
    transform: translateY(0px);
}

.zts-btn {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--accent-dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--accent-dark);
    opacity: 0;
    transform: translateY(30px);
    transition: 0.3s 0.7s, transform 0.3s;
    color: var(--white) !important;
}

.zts-item.zts-active .zts-btn {
    opacity: 1;
    transform: translateY(0px);
}

.zts-btn:hover {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white) !important;
}

.zts-texture-card {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 200px;
    height: 200px;
    background: rgb(26, 26, 26);
    border: 5px solid rgba(255, 255, 255, 0.8);
    box-shadow: rgba(0, 0, 0, 0.6) 0px 20px 50px;
    z-index: 6;
    overflow: hidden;
    border-radius: 15px;
    animation: 6s ease-in-out 0s infinite normal none running ztsFloat;
}

.zts-texture-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.zts-texture-card:hover .zts-texture-img {
    transform: scale(1.15);
}

.zts-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--accent-dark);
    color: var(--white);
    font-size: 0.8rem;
    padding: 8px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    z-index: 2;
    border-bottom-right-radius: 10px;
}

.zts-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--accent-dark);
    color: var(--accent-dark);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    transition: 0.4s;
}

.zts-nav::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-light) 100%);
    opacity: 0;
    transform: scale(0.8);
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.zts-nav:hover {
    color: var(--white);
    border-color: transparent;
    box-shadow: rgba(63, 78, 79, 0.4) 0px 10px 20px;
    transform: translateY(-50%) scale(1.1);
}

.zts-nav:hover::before {
    opacity: 1;
    transform: scale(1);
}

.zts-prev {
    left: 30px;
}

.zts-next {
    right: 30px;
}

@media (max-width: 768px) {
    .zts-prev {
        left: 10px;
        background: rgba(255, 255, 255, 0.8);
    }

    .zts-next {
        right: 10px;
        background: rgba(255, 255, 255, 0.8);
    }
}

@keyframes ztsFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 991px) {
    .zts-title {
        font-size: 2.8rem;
    }

    .zts-content-box {
        left: 5%;
        width: 90%;
        text-align: center;
    }

    .zts-texture-card {
        display: none;
    }

    .zts-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .zts-prev {
        left: 10px;
    }

    .zts-next {
        right: 10px;
    }
}

#slider-texture-box {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 180px;
    height: 180px;
    background-color: var(--gray-dark);
    z-index: 20;
    overflow: hidden;
    cursor: pointer;
    border-top-right-radius: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: rgba(0, 0, 0, 0.3) 5px -5px 20px;
}

#slider-texture-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

#slider-texture-box span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 255, 255);
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    transition: opacity 0.3s;
}

#slider-texture-box:hover {
    width: 80%;
    height: 80%;
    border-top-right-radius: 50px;
    z-index: 50;
    border-color: var(--accent-dark);
    box-shadow: rgba(0, 0, 0, 0.5) 15px -15px 50px;
}

#slider-texture-box:hover img {
    transform: scale(1.1);
}

#slider-texture-box:hover span {
    opacity: 0;
}

.btn,
.submit-btn,
.zts-btn,
.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--body-font);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.4s;
    border: none;
    background-size: 200%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 20px;
    color: rgb(255, 255, 255) !important;
}

.btn-primary,
.zts-btn,
.submit-btn {
    background-image: linear-gradient(to right, rgb(162, 123, 92) 0%, rgb(214, 164, 112) 51%, rgb(162, 123, 92) 100%);
}

.btn-primary:hover,
.zts-btn:hover,
.submit-btn:hover {
    background-position: right center;
    box-shadow: rgba(162, 123, 92, 0.4) 0px 15px 30px;
    transform: translateY(-3px);
}

.view-all-btn {
    background-image: linear-gradient(to right, rgb(63, 78, 79) 0%, rgb(44, 54, 57) 51%, rgb(63, 78, 79) 100%);
    padding: 12px 35px;
    border: none;
}

.view-all-btn:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 25px;
}

.zt-faq-root {
    --zt-bg: #DCD7C9;
    --zt-text: #2C3639;
    --zt-accent: #A27B5C;
    --zt-white: #ffffff;
    --zt-gray-light: #EAE7DC;
    --zt-gray-medium: #3F4E4F;
    --zt-font-head: 'Ubuntu', sans-serif;
    --zt-font-body: 'Public Sans', sans-serif;
    --zt-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --zt-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background-color: var(--zt-bg);
    font-family: var(--zt-font-body);
    color: var(--zt-text);
    line-height: 1.6;
    width: 100%;
    display: block;
}

.zt-faq-root *,
.zt-faq-root ::before,
.zt-faq-root ::after {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}


.zt-section-padding {
    padding: 80px 0px;
}

.zt-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.zt-sidebar-sticky {
    position: sticky;
    top: 100px;
}

.zt-label-text {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--zt-accent);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.zt-main-title {
    font-family: var(--zt-font-head);
    font-size: 2.5rem;
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
    position: relative;
}

.zt-main-title::after {
    content: "";
    display: block;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--zt-accent) 0%, transparent 100%);
    margin-top: 10px;
    animation: 0.8s ease-out 0s 1 normal none running ztUnderline;
}

.zt-desc-text {
    color: var(--zt-gray-medium);
    margin-bottom: 40px;
    font-size: 1rem;
}

.zt-help-card {
    background-color: var(--zt-white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: rgba(44, 54, 57, 0.1) 0px 5px 15px;
    transition: 0.5s var(--zt-bounce);
}

.zt-help-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(44, 54, 57, 0.15) 0px 10px 30px;
}

.zt-help-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(162, 123, 92, 0.1);
    color: var(--zt-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0px auto 20px;
    transition: 0.3s;
}

.zt-help-card:hover .zt-help-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.zt-card-title {
    font-family: var(--zt-font-head);
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: block;
}

.zt-card-desc {
    font-size: 0.9rem;
    color: var(--zt-gray-medium);
    margin-bottom: 20px;
    display: block;
}

.zt-btn-primary {
    background: linear-gradient(135deg, var(--zt-accent) 0%, #8B6245 100%);
    color: var(--zt-white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.5s var(--zt-bounce);
    box-shadow: rgba(162, 123, 92, 0.2) 0px 4px 15px;
    border: none;
    cursor: pointer;
    font-family: var(--zt-font-body);
}

.zt-btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: rgba(162, 123, 92, 0.35) 0px 8px 25px;
}

.zt-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zt-faq-item {
    background-color: var(--zt-white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: rgba(44, 54, 57, 0.05) 0px 2px 10px;
    overflow: hidden;
    transition: all 0.4s var(--zt-ease);
    opacity: 0;
    transform: translateY(20px);
    animation: ztItemAppear 0.6s var(--zt-ease) forwards;
}

.zt-faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.zt-faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.zt-faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.zt-faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.zt-faq-item:hover {
    box-shadow: rgba(44, 54, 57, 0.1) 0px 5px 15px;
    transform: translateY(-2px);
    border-color: rgba(162, 123, 92, 0.1);
}

.zt-faq-item.zt-active {
    box-shadow: rgba(44, 54, 57, 0.15) 0px 10px 30px;
    border-color: rgba(162, 123, 92, 0.2);
    transform: translateY(-5px);
}

.zt-faq-header {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.zt-faq-header::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0px;
    height: 100%;
    background: linear-gradient(90deg, rgba(162, 123, 92, 0.05) 0%, transparent 100%);
    transition: 0.3s;
    z-index: 0;
}

.zt-faq-header:hover::before {
    width: 100%;
}

.zt-question-text {
    font-family: var(--zt-font-head);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--zt-text);
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.zt-faq-item.zt-active .zt-question-text {
    color: var(--zt-accent);
}

.zt-toggle-icon {
    width: 35px;
    height: 35px;
    background: rgba(240, 240, 240, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--zt-text);
    transition: 0.5s var(--zt-bounce);
    position: relative;
    z-index: 1;
}

.zt-faq-item.zt-active .zt-toggle-icon {
    background: linear-gradient(135deg, var(--zt-accent) 0%, #8B6245 100%);
    color: var(--zt-white);
    transform: rotate(180deg) scale(1.1);
    box-shadow: rgba(162, 123, 92, 0.3) 0px 4px 12px;
}

.zt-faq-content {
    max-height: 0px;
    overflow: hidden;
    background-color: var(--zt-white);
    transition: max-height 0.6s var(--zt-ease);
}

.zt-content-inner {
    padding: 0px 30px 30px;
    color: var(--zt-gray-medium);
    font-size: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: 0.4s;
}

.zt-faq-item.zt-active .zt-content-inner {
    opacity: 1;
    transform: translateY(0px);
}

.zt-content-inner p {
    margin-bottom: 10px;
}

.zt-content-inner p:last-child {
    margin-bottom: 0px;
}

.zt-content-inner strong {
    color: var(--zt-accent);
    font-weight: 700;
}

@keyframes ztItemAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes ztUnderline {
    0% {
        transform: scaleX(0);
        transform-origin: left center;
    }

    100% {
        transform: scaleX(1);
        transform-origin: left center;
    }
}

@media (max-width: 992px) {
    .zt-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zt-sidebar-sticky {
        position: relative;
        top: 0px;
        text-align: center;
    }

    .zt-main-title::after {
        margin: 10px auto 0px;
    }

    .zt-help-card {
        max-width: 400px;
        margin: 0px auto;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


.zt-card-title {
    font-family: var(--zt-font-head);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0px 0px 15px;
    color: var(--zt-color-dark);
}

@keyframes brickDrop {
    0% {
        opacity: 0;
        transform: translateY(-80px) scale(0.9);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 576px) {
    .slider-wide-wrapper {
        width: 100%;
        padding: 0px 15px;
        overflow: visible;
    }

    .slider-layout {
        gap: 40px;
    }

    .slider-visual-wrapper {
        min-width: 100%;
        width: 100%;
        flex: 1 1 auto;
        margin-bottom: 20px;
    }

    .single-slide-card {
        border-radius: 20px;
        height: 380px !important;
    }

    .slider-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 15px;
    }

    .prev-btn {
        left: 0px;
        transform: translateX(-10%);
    }

    .next-btn {
        right: 0px;
        transform: translateX(10%);
    }

    .texture-box,
    #slider-texture-box {
        min-width: auto;
        min-height: auto;
        border-top-right-radius: 20px;
        width: 110px !important;
        height: 110px !important;
    }

    .texture-box span,
    #slider-texture-box span {
        font-size: 11px;
        padding: 4px 10px;
    }

    .slider-text-content {
        min-width: 100%;
        padding: 0px 5px;
        text-align: center;
    }

    .slider-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .slider-desc {
        font-size: 15px;
        line-height: 1.5;
        max-width: 100%;
    }

    .slider-meta {
        justify-content: center;
        gap: 15px;
    }

    .meta-box {
        width: 100%;
        min-width: auto;
        padding: 15px;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .zts-nav {
        display: none !important;
    }
}

.zts-bg {
    transition: transform 4s ease-in-out !important;
}

.takeoff-btn-wrapper {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
}

.takeoff-btn {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 32px;
    color: rgb(255, 255, 255);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.takeoff-btn svg {
    width: 32px;
    height: 32px;
    stroke-width: 2px;
    transform-origin: center center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.takeoff-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 40px;
}

.takeoff-btn:hover svg {
    transform: rotate(-45deg);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0.5;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

@keyframes pulsePrice {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        color: rgb(255, 255, 255);
    }

    100% {
        transform: scale(1);
    }
}

.z-mobile-wrapper {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.4s;
}

.z-mobile-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(44, 54, 57, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s;
}

.z-mobile-panel {
    position: absolute;
    top: 0px;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background-color: var(--bg-panel, #fff);
    background-image: var(--stone-texture);
    box-shadow: rgba(0, 0, 0, 0.15) -10px 0px 30px;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.z-m-top {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.z-m-logo {
    height: 45px;
    width: auto;
}

.z-m-close-btn {
    width: 46px;
    height: 46px;
    background: var(--bg-light-gray, #f0f0f0);
    color: var(--text-main, #333);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 15px;
}

.z-m-close-btn i {
    pointer-events: none;
    line-height: 0;
}

.z-m-close-btn:hover {
    background: var(--accent, #A27B5C);
    color: rgb(255, 255, 255);
    transform: rotate(90deg) scale(1.1);
    border-color: var(--accent, #A27B5C);
    box-shadow: rgba(162, 123, 92, 0.4) 0px 5px 15px;
}

.z-m-content {
    flex: 1 1 0%;
    overflow-y: auto;
    padding: 20px 25px;
}

.z-m-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-head, sans-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main, #333);
    padding: 16px 0px;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: color 0.3s;
}

.z-m-link i {
    font-size: 0.9rem;
    color: rgb(187, 187, 187);
    transition: transform 0.3s;
}

.z-m-link:hover,
.z-m-link.active {
    color: var(--accent, #A27B5C);
}

.z-m-submenu {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(162, 123, 92, 0.04);
    border-radius: 8px;
    margin-bottom: 5px;
}

.z-m-submenu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-muted, #666);
    font-size: 0.95rem;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: 0.2s;
    font-weight: 500;
}

.z-m-submenu a:hover {
    color: var(--accent, #A27B5C);
    padding-left: 25px;
    border-left-color: var(--accent, #A27B5C);
    background: rgba(255, 255, 255, 0.6);
}

.z-m-bottom {
    padding: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.5);
}

.z-m-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--text-main, #333);
    color: rgb(255, 255, 255);
    padding: 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
    margin-bottom: 20px;
    font-family: var(--font-head, sans-serif);
}

.z-m-cta:hover {
    background: var(--accent, #A27B5C);
    transform: translateY(-3px);
    box-shadow: rgba(162, 123, 92, 0.3) 0px 5px 15px;
}

.z-m-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.z-m-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main, #333);
    transition: 0.3s;
    font-size: 1.1rem;
}

.z-m-social a:hover {
    background: var(--accent, #A27B5C);
    color: rgb(255, 255, 255);
    border-color: var(--accent, #A27B5C);
}

.z-m-top {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    gap: 20px;
}

.z-m-logo {
    height: 45px;
    width: auto;
    max-width: 70%;
    object-fit: contain;
}

.z-m-close-btn {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: var(--bg-light-gray, #f0f0f0);
    color: var(--text-main, #333);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 15px;
}

.z-m-close-btn i {
    pointer-events: none;
    line-height: 0;
}

.z-m-close-btn:hover {
    background: var(--accent, #A27B5C);
    color: rgb(255, 255, 255);
    transform: rotate(90deg) scale(1.1);
    border-color: var(--accent, #A27B5C);
    box-shadow: rgba(162, 123, 92, 0.4) 0px 5px 15px;
}




.news-3d-section {
    background: linear-gradient(135deg, rgb(234, 231, 220) 0%, rgb(128, 128, 128) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0px;
}

.news-3d-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 600px;
    margin: 0px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
    /* 3D derinlik hissi veren kod bu */
    z-index: 2;
}

.news-3d-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

/* 2. Kart Temel Ayarları */
.news-3d-card {
    position: absolute;
    width: 340px;
    height: 500px;
    background: rgb(255, 255, 255);
    border-radius: 24px;
    box-shadow: rgba(44, 54, 57, 0.1) 0px 15px 35px;
    overflow: hidden;
    transition: 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Yumuşak geçiş */
    opacity: 0;
    z-index: 0;
    left: 50%;
    transform: translate(-50%, 0px) scale(0.5);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
}

/* 3. Kart Pozisyonları ve 3D Efektler (BU KISIM EKSİKTİ) */

/* AKTİF KART (Ortada, Büyük ve Net) */
.news-3d-card.active {
    opacity: 1;
    z-index: 20;
    left: 50%;
    transform: translate(-50%, 0px) scale(1.15);
    box-shadow: rgba(162, 123, 92, 0.3) 0px 30px 60px -10px, rgba(0, 0, 0, 0.1) 0px 10px 20px -5px;
    border: 1px solid rgba(162, 123, 92, 0.2);
}

/* SOLDAKİ KART (Hafif dönük ve silik) */
.news-3d-card.prev {
    opacity: 0.7;
    z-index: 15;
    left: 28%;
    transform: translate(-50%, 0px) scale(0.9) rotateY(15deg);
    /* 3D Dönüş */
    filter: grayscale(40%) contrast(0.9);
}

/* SAĞDAKİ KART (Hafif dönük ve silik) */
.news-3d-card.next {
    opacity: 0.7;
    z-index: 15;
    left: 72%;
    transform: translate(-50%, 0px) scale(0.9) rotateY(-15deg);
    /* 3D Dönüş */
    filter: grayscale(40%) contrast(0.9);
}

/* EN SOLDAKİ GİZLİ KART */
.news-3d-card.prev-2 {
    opacity: 0.4;
    z-index: 10;
    left: 12%;
    transform: translate(-50%, 0px) scale(0.75) rotateY(25deg);
    filter: grayscale(100%) blur(2px);
    pointer-events: none;
}

/* EN SAĞDAKİ GİZLİ KART */
.news-3d-card.next-2 {
    opacity: 0.4;
    z-index: 10;
    left: 88%;
    transform: translate(-50%, 0px) scale(0.75) rotateY(-25deg);
    filter: grayscale(100%) blur(2px);
    pointer-events: none;
}

/* 4. İçerik ve Görseller */
.news-3d-img-box {
    position: relative;
    height: 52%;
    overflow: hidden;
    border-bottom: 4px solid var(--accent);
}

.news-3d-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.news-3d-card:hover .news-3d-img-box img {
    transform: scale(1.15);
}

/* Tarih Rozeti */
.n3d-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 20px;
    z-index: 3;
    overflow: hidden;
    min-width: 65px;
    transition: transform 0.3s;
}

.n3d-date-badge .month-box {
    background-color: var(--accent);
    color: rgb(255, 255, 255);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 0px;
}

.n3d-date-badge .day {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    padding-top: 6px;
}

.n3d-date-badge .year {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    padding-bottom: 8px;
}

/* Kart Yazıları */
.news-3d-content {
    padding: 30px 25px;
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
}

.news-3d-content h3 {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.news-3d-content h3 a:hover {
    color: var(--accent);
}

.news-3d-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Butonlar */
.n3d-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
    margin-top: auto;
    border-bottom: 2px solid transparent;
    width: fit-content;
}

.n3d-btn:hover {
    color: var(--text-main);
    border-bottom-color: var(--accent);
    gap: 15px;
}

/* Ok Tuşları */
.n3d-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgb(255, 255, 255);
    color: var(--text-muted);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 100;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 25px;
}

.n3d-nav-btn:hover {
    background-color: var(--accent);
    color: rgb(255, 255, 255);
    transform: translateY(-50%) scale(1.15);
    box-shadow: rgba(162, 123, 92, 0.4) 0px 10px 30px;
    border-color: var(--accent);
}

.n3d-prev {
    left: 30px;
}

.n3d-next {
    right: 30px;
}

/* 5. Responsive (Mobil/Tablet) Ayarları */
@media (max-width: 1200px) {

    .news-3d-card.prev-2,
    .news-3d-card.next-2 {
        opacity: 0;

    }

    .news-3d-card.prev {
        left: 20%;
        transform: translate(-50%, 0px) scale(0.9);
    }

    .news-3d-card.next {
        left: 80%;
        transform: translate(-50%, 0px) scale(0.9);
    }

    .n3d-prev {
        left: 10px;
    }

    .n3d-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .news-3d-container {
        height: 540px;
    }

    .news-3d-card {
        width: 82vw;
        height: 460px;
    }

    .news-3d-card.active {
        transform: translate(-50%, 0px) scale(1);
    }

    /* Mobilde yan kartları silik yapıp arkaya atıyoruz */
    .news-3d-card.prev {
        left: -12%;
        transform: translate(0px, 0px) scale(0.85);
        opacity: 0.3;
    }

    .news-3d-card.next {
        left: auto;
        right: -12%;
        transform: translate(0px, 0px) scale(0.85);
        opacity: 0.3;
    }

    .n3d-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.95);
    }
}










/*=========================
KolekSiyon Detay Sayfası 
==========================*/
.zt-proj-card {
    position: relative;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
    transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}

.zt-proj-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.zt-proj-bg-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.zt-proj-bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.6s var(--ease);
    transform-origin: center center;
}

.zt-proj-card:hover .zt-proj-bg-wrapper img {
    transform: scale(1.08);
}

.zt-proj-overlay {
    background: linear-gradient(to top, rgba(44, 54, 57, 0.9) 0%, rgba(44, 54, 57, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    inset: 0px;
    z-index: 1;
    opacity: 0.6;
    transition: opacity 0.8s ease-out;
}

.zt-proj-card:hover .zt-proj-overlay {
    opacity: 0.9;
}

.zt-proj-content {
    position: absolute;
    top: 40px;
    left: 30px;
    right: 30px;
    z-index: 30;
    opacity: 0;
    transform: translateY(-15px);
    transform: translateY(-15px);
    transition: opacity 0.8s ease, transform 0.8s var(--ease);
    transition-delay: 0.1s;
    pointer-events: none;
}

.zt-proj-card:hover .zt-proj-content {
    opacity: 1;
    transform: translateY(0px);
}

.zt-proj-content h3 {
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 4px 20px;
}

.zt-proj-content p {
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--gray-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 5px;
    display: inline-block;
}

.zt-proj-texture-box {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100px;
    height: 100px;
    background-color: var(--gray-dark);
    z-index: 20;
    transform: translateY(100%);
    transition: transform 0.6s var(--ease), width 0.4s var(--ease), height 0.4s var(--ease);
    border-top-right-radius: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: rgba(0, 0, 0, 0.2) 5px -5px 20px;
}

.zt-proj-card:hover .zt-proj-texture-box {
    transform: translateY(0px);
}

.zt-proj-texture-box:hover {
    width: 160px;
    height: 160px;
    border-top-right-radius: 30px;
    border-color: var(--accent);
}

.zt-proj-texture-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s;
    opacity: 0.8;
}

.zt-proj-texture-box:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.zt-proj-texture-box span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--heading-font);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    pointer-events: none;
    transition: opacity 0.3s;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 12px;
    border-radius: 20px;
}

.zt-proj-texture-box:hover span {
    opacity: 0;
}

.zt-proj-icon {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 6;
    transition: all 0.5s var(--ease);
}

.zt-proj-icon svg {
    stroke-width: 1.5px;
    width: 28px;
    height: 28px;
    transition: transform 0.5s var(--ease);
}

.zt-proj-icon:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: rgba(162, 123, 92, 0.4) 0px 10px 25px;
}

.zt-proj-icon:hover svg {
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .zt-proj-card {
        height: 400px;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.zcol-container {
    max-width: 1400px;
    margin: 0px auto;
    padding: 0px 20px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.prod-detail-section {
    padding: 0px 0px 80px;
    background-color: var(--bg-color);
}

.prod-showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: start;
}

.prod-gallery-col {
    position: relative;
}

.prod-main-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
    position: relative;
}

.prod-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.prod-main-image:hover img {
    transform: scale(1.05);
}

.prod-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent);
    color: rgb(255, 255, 255);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 15px;
}

.prod-info-col {
    padding-top: 20px;
}

.prod-category {
    display: block;
    font-family: var(--body-font);
    font-size: 0.9rem;
    color: var(--text-muted, #888);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.prod-title {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.1;
}

.prod-code {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.prod-desc {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.prod-specs {
    background-color: #a5a196;
    padding: 30px;
    border-radius: var(--zt-radius, 16px);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 40px;
    position: relative;
    border: 1px solid rgba(162, 123, 92, 0.1);
}

.prod-specs::before {
    border-radius: 70px 0px 0px 70px;
    content: "";
    position: absolute;
    top: 0px;
    left: -0.9px;
    width: 12px;
    height: 100%;
    background: linear-gradient(rgba(196, 181, 155, 0.486) 20%, rgba(237, 227, 221, 0.235) 80%);
}

.prod-specs li {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.prod-specs li:hover {
    background-color: #b3aea2;
    border-radius: 30px;
}

.prod-specs span {
    color: rgb(225, 225, 225);
}

.prod-specs strong {
    color: white;
    font-weight: 700;
}

.prod-related-projects {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 170px;
}

.related-header {
    margin-bottom: 40px;
}

.related-header h3 {
    font-size: 2rem;
    font-family: var(--heading-font);
    margin-bottom: 10px;
}

.related-header p {
    color: var(--text-muted, #666);
}

.related-scroll-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 30px;
    scroll-behavior: smooth;
    padding-left: 5px;
    padding-right: 5px;
}

.related-scroll-track::-webkit-scrollbar {
    height: 10px;
}

.related-scroll-track::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.related-scroll-track::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 10px;
    border: 2px solid var(--bg-color);
}

.zt-proj-card-wrapper {
    flex: 0 0 350px;
}

@media (max-width: 992px) {
    .prod-showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .prod-main-image {
        height: 400px;
    }

    .prod-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .prod-detail-section {
        padding-top: 100px;
    }

    .prod-main-image {
        height: 300px;
    }

    .prod-title {
        font-size: 1.8rem;
    }

    .zt-proj-card-wrapper {
        flex: 0 0 300px;
    }

    .zt-proj-card {
        height: 400px !important;
    }
}

.prod-showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: stretch;
}

.prod-main-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
    position: relative;
}

.prod-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.related-scroll-track {
    cursor: grab;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 30px;
    padding-left: 5px;
    padding-right: 5px;
    scroll-behavior: smooth;
    user-select: none;
}

.related-scroll-track img {
    -webkit-user-drag: none;
    pointer-events: none;
}

.zt-proj-card-wrapper,
.zt-proj-card {
    user-select: none;
}

.zcol-container {
    max-width: 1800px;
    margin: 0px auto;
    padding: 70px 30px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .zcol-container {
        padding: 40px 20px;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0.5;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulsePrice {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        color: rgb(255, 255, 255);
    }

    100% {
        transform: scale(1);
    }
}

/* --- Kutu Tasarımı (Sabit Yükseklik) --- */
.prod-thumb-box-container {
    background-color: var(--bg-light-gray);
    /* Bej Zemin */
    padding: 15px 15px 35px 15px;
    /* Alt boşluğu buton için artırdık */
    border-radius: 0 0 20px 20px;
    /* Köşeleri biraz daha keskinleştirdik */
    margin-bottom: 30px;
    /* Alttaki içerikle mesafe */
    position: relative;
    /* Buton hizalaması için şart */
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- Slider Yolu --- */
.prod-thumb-track {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex-grow: 1;
    white-space: nowrap;
    /* Resimlerin alt satıra kaymasını engeller */
    padding: 10px 20px;
}

.prod-thumb-track::-webkit-scrollbar {
    display: none;
}

/* --- Resimler (SABİT BOYUT) --- */
.thumb-img {
    width: 100px;
    /* Genişlik sabit */
    height: 75px;
    /* Yükseklik sabit */
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.6;
    /* Pasifken biraz silik */
    border: 2px solid transparent;
    flex-shrink: 0;
    /* Küçülmesini engeller */
    background-color: #ddd;
    /* Resim yüklenmezse gri zemin */
    display: block;
    /* Yazı kaymasını engeller */
}

/* --- Seçili Resim --- */
.thumb-img.active {
    opacity: 1;
    border-color: var(--accent);
    /* Toprak rengi çerçeve */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
    /* Çok hafif büyüme */
}

/* Hover */
.thumb-img:hover {
    opacity: 1;
}

/* --- SOL ALT KÖŞE BUTONU --- */
.view-all-corner-btn {
    position: absolute;
    bottom: -15px;
    /* Kutunun altından yarısı sarkacak şekilde */
    left: 20px;
    /* Sol kenardan mesafe */

    background-color: var(--accent);
    /* Toprak Rengi */
    color: var(--white);

    border: none;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    padding: 10px 20px;
    border-radius: 30px;
    /* Tam yuvarlak buton */

    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(162, 123, 92, 0.4);
    z-index: 10;
}

.view-all-corner-btn:hover {
    background-color: var(--text-main);
    /* Hover olunca koyu renk */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* --- Ok Butonları --- */
.thumb-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.thumb-nav:hover {
    background: var(--text-main);
    color: white;
}

/* --- TAB STİLİ BUTON (İstediğin Tasarım) --- */
.view-all-tab-btn {
    position: absolute;
    bottom: -32px;
    /* Kutunun tam altından sarkması için eksi değer */
    right: 20px;
    /* Sağdan biraz içeride (tam bitişik istersen 0 yapabilirsin) */

    background-color: var(--text-main);
    /* Koyu renk arka plan (Antrasit) */
    color: var(--white);

    border: none;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;

    padding: 8px 25px;
    border-radius: 0 0 15px 15px;
    /* Sadece alt köşeleri yuvarla */

    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    /* Sarktığını belli eden gölge */
    z-index: 4;
    /* Kutunun altında (layer olarak) kalmasın */

    display: flex;
    align-items: center;
    gap: 8px;
}

/* Buton Hover Efekti */
.view-all-tab-btn:hover {
    background-color: var(--accent);
    /* Hover olunca toprak rengi */
    padding-bottom: 12px;
    /* Aşağı doğru biraz uzama efekti */
    bottom: -36px;
    /* Uzadığı için konumu ayarla */
}

/* Mobil için Ayar */
@media (max-width: 768px) {
    .prod-thumb-box-container {
        padding: 10px;
    }

    .view-all-tab-btn {
        right: 50%;
        transform: translateX(50%);
        /* Mobilde ortala */
        width: auto;
        white-space: nowrap;
    }
}

/* --- Tümünü Görüntüle Butonu --- */
.view-all-colors-wrapper {
    text-align: center;
    margin-top: 15px;
}

.view-all-colors-btn {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 20px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px dashed rgba(0, 0, 0, 0.2);
}

.view-all-colors-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.5);
}

/* --- Modal (Popup) Tasarımı --- */
.prod-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.prod-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.prod-modal-content {
    background: var(--bg-panel);
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: 0.4s ease;
}

.prod-modal-overlay.active .prod-modal-content {
    transform: translateY(0);
}

.prod-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

.prod-modal-header h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--text-main);
}

.prod-modal-close {
    background: var(--bg-light-gray);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    color: var(--text-main);
}

.prod-modal-close:hover {
    background: var(--danger);
    color: white;
    transform: rotate(90deg);
}

.prod-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.modal-img-item {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    background: #fff;
}

.modal-img-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.modal-img-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.modal-img-item span {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

/* --- Tümünü Görüntüle Butonu Alanı --- */
.view-all-colors-wrapper {
    width: 100%;
    text-align: center;
    /* Ortalar */
    margin-top: 30px;
    /* Resimlerden uzaklaş */
    margin-bottom: 40px;
    /* Alttaki "Projeler" yazısından uzaklaş */
    padding-bottom: 20px;
    /* Ekstra güvenlik boşluğu */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Hafif bir ayırıcı çizgi */
}

/* Butonun Kendisi */
.view-all-colors-btn {
    background-color: var(--white);
    border: 1px solid var(--accent);
    /* Çerçeveli olsun */
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    cursor: pointer;
    padding: 12px 30px;
    /* İç boşluğu artırdım, daha büyük görünsün */
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Hafif gölge */
}

/* Hover (Üzerine gelince) */
.view-all-colors-btn:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    /* Hafif yukarı kalksın */
    box-shadow: 0 8px 20px rgba(162, 123, 92, 0.3);
}

/* İkon Ayarı */
.view-all-colors-btn i {
    font-size: 1.1rem;
}











/*===========================
Proje Detay Sayfası CSS Sonu 
=============================*/

.zt-proj-card {
    position: relative;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
    transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}

.zt-proj-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.zt-proj-bg-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.zt-proj-bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.6s var(--ease);
    transform-origin: center center;
}

.zt-proj-card:hover .zt-proj-bg-wrapper img {
    transform: scale(1.08);
}

.zt-proj-overlay {
    background: linear-gradient(to top, rgba(44, 54, 57, 0.9) 0%, rgba(44, 54, 57, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    inset: 0px;
    z-index: 1;
    opacity: 0.6;
    transition: opacity 0.8s ease-out;
}

.zt-proj-card:hover .zt-proj-overlay {
    opacity: 0.9;
}

.zt-proj-content {
    position: absolute;
    top: 40px;
    left: 30px;
    right: 30px;
    z-index: 30;
    opacity: 0;
    transform: translateY(-15px);
    transform: translateY(-15px);
    transition: opacity 0.8s ease, transform 0.8s var(--ease);
    transition-delay: 0.1s;
    pointer-events: none;
}

.zt-proj-card:hover .zt-proj-content {
    opacity: 1;
    transform: translateY(0px);
}

.zt-proj-content h3 {
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 4px 20px;
}

.zt-proj-content p {
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--gray-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 5px;
    display: inline-block;
}

.zt-proj-icon {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 6;
    transition: all 0.5s var(--ease);
}

.zt-proj-icon:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: rgba(162, 123, 92, 0.4) 0px 10px 25px;
}

@media (max-width: 768px) {
    .zt-proj-card {
        height: 400px;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.zcol-container {
    max-width: 1400px;
    margin: 0px auto;
    padding: 0px 20px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.prod-detail-section {
    padding: 0px 0px 80px;
    background-color: var(--bg-color);
}

.prod-showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: start;
}

.prod-gallery-col {
    position: relative;
}

.prod-main-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
    position: relative;
}

.prod-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.prod-main-image:hover img {
    transform: scale(1.05);
}

.prod-info-col {
    padding-top: 20px;
}

.prod-category {
    display: block;
    font-family: var(--body-font);
    font-size: 0.9rem;
    color: var(--text-muted, #888);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.prod-title {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.1;
}

.prod-desc {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.prod-specs {
    background-color: #a5a196;
    padding: 30px;
    border-radius: var(--zt-radius, 16px);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 40px;
    position: relative;
    border: 1px solid rgba(162, 123, 92, 0.1);
}

.prod-specs::before {
    border-radius: 70px 0px 0px 70px;
    content: "";
    position: absolute;
    top: 0px;
    left: -0.9px;
    width: 12px;
    height: 100%;
    background: linear-gradient(rgba(196, 181, 155, 0.486) 20%, rgba(237, 227, 221, 0.235) 80%);
}

.prod-specs li {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.prod-specs li:hover {
    background-color: #b3aea2;
    border-radius: 30px;
}

.prod-specs span {
    color: rgb(225, 225, 225);
}

.prod-specs strong {
    color: white;
    font-weight: 700;
}

.prod-related-projects {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 60px;
}

.related-header {
    margin-top: 80px;
    margin-bottom: 40px;
}

.related-header h3 {
    font-size: 2rem;
    font-family: var(--heading-font);
    margin-bottom: 10px;
}

.related-header p {
    color: var(--text-muted, #666);
}

.related-scroll-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 30px;
    scroll-behavior: smooth;
    padding-left: 5px;
    padding-right: 5px;
}

.related-scroll-track::-webkit-scrollbar {
    height: 10px;
}

.related-scroll-track::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.related-scroll-track::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 10px;
    border: 2px solid var(--bg-color);
}

.zt-proj-card-wrapper {
    flex: 0 0 350px;
}

@media (max-width: 992px) {
    .prod-showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .prod-main-image {
        height: 400px;
    }

    .prod-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .prod-detail-section {
        padding-top: 100px;
    }

    .prod-main-image {
        height: 300px;
    }

    .prod-title {
        font-size: 1.8rem;
    }

    .zt-proj-card-wrapper {
        flex: 0 0 300px;
    }

    .zt-proj-card {
        height: 400px !important;
    }
}

.project-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.project-thumbnails img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
    border: 2px solid transparent;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
}

.project-thumbnails img:hover,
.project-thumbnails img.active {
    opacity: 1;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 15px;
}

@media (max-width: 768px) {
    .project-thumbnails {
        gap: 10px;
    }

    .project-thumbnails img {
        height: 80px;
        border-radius: 8px;
    }
}

.prod-showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: stretch;
}

.prod-main-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    max-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
    position: relative;
}

.prod-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.related-scroll-track {
    cursor: grab;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 30px;
    padding-left: 5px;
    padding-right: 5px;
    scroll-behavior: smooth;
    user-select: none;
}

.related-scroll-track img {
    -webkit-user-drag: none;
    pointer-events: none;
}

.zt-proj-card-wrapper,
.zt-proj-card {
    user-select: none;
}

.zcol-container {
    max-width: 1800px;
    margin: 0px auto;
    padding: 70px 30px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .zcol-container {
        padding: 40px 20px;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0.5;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulsePrice {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        color: rgb(255, 255, 255);
    }

    100% {
        transform: scale(1);
    }
}

/* =======================================================
   MOBİL VE TABLET DÜZELTMELERİ (EN ALTA EKLE)
   ======================================================= */

/* --- TABLET VE KÜÇÜK LAPTOP (992px altı) --- */
@media (max-width: 992px) {

    /* Genel Container Düzeltmeleri */
    .z-container,
    .zt-container,
    .zcol-container,
    .zcon-container {
        padding: 0 20px !important;
        width: 100% !important;
    }

    /* Footer Hizalama */
    .z-footer-main {
        flex-direction: column !important;
        gap: 40px !important;
    }

    .z-brand-column,
    .z-links-grid {
        max-width: 100% !important;
        flex: 0 0 100% !important;
        text-align: center !important;
    }

    .z-links-grid {
        grid-template-columns: 1fr 1fr !important;
        /* Tablette 2 sütun */
    }

    /* Ürün Detay Sayfası */
    .prod-showcase-wrapper {
        grid-template-columns: 1fr !important;
        /* Alt alta al */
        gap: 40px !important;
    }

    .prod-main-image {
        height: 400px !important;
    }

    /* Slider Alanı */
    .slider-layout {
        flex-direction: column !important;
        text-align: center !important;
    }

    .single-slide-card {
        height: 500px !important;
    }
}

/* --- MOBİL TELEFONLAR (768px altı) --- */
@media (max-width: 768px) {

   

    .z-nav-wrap,
    .z-header-btn,
    .z-top-bar,
    .z-cta-btn {
        display: none !important;
        /* Masaüstü menüyü gizle */
    }

    .z-hamburger {
        display: flex !important;
        /* Hamburger menüyü aç */
    }

    .z-actions {
        margin-left: auto !important;
    }

    /* 2. ANA BAŞLIKLAR VE FONT */
    h1,
    .prod-title,
    .banner-title,
    .zt-proj-content h3 {
        font-size: 1.8rem !important;
        /* Başlıkları küçült */
        line-height: 1.2 !important;
    }

    p,
    .z-brand-desc,
    .prod-desc {
        font-size: 0.95rem !important;
    }

    /* 3. PROJE KARTLARI (GRID SİSTEMİ) */
    .zt-proj-container,
    .zcol-grid,
    .features-premium-grid,
    .process-grid {
        grid-template-columns: 1fr !important;
        /* Tek sütuna düşür */
        gap: 30px !important;
        padding: 20px 10px !important;
    }

    .zt-proj-card {
        height: 350px !important;
        /* Kart boyunu mobilde kısalt */
    }

    .zt-proj-content {
        left: 20px !important;
        right: 20px !important;
        top: 30px !important;
    }

    .zt-proj-content h3 {
        font-size: 1.8rem !important;
    }

    /* 4. HABERLER (3D SLIDER DÜZELTME) */
    .news-3d-container {
        height: 500px !important;
    }

    .news-3d-card {
        width: 85vw !important;
        /* Ekranın %85'ini kaplasın */
        height: 420px !important;
        left: 50% !important;
    }

    /* Yanlardaki kartları gizle veya silik yap */
    .news-3d-card.prev,
    .news-3d-card.next {
        opacity: 0 !important;
        pointer-events: none;
    }

    .news-3d-card.active {
        transform: translate(-50%, 0) scale(1) !important;
        opacity: 1 !important;
    }

    /* 5. FOOTER DÜZENLEMELERİ */
    .z-links-grid {
        grid-template-columns: 1fr !important;
        /* Mobilde tek sütun */
        gap: 30px !important;
    }

    .z-footer {
        padding-top: 40px !important;
        padding-bottom: 80px !important;
        /* Alt kısımda boşluk bırak */
    }

    /* 6. ÜRÜN DETAY & GALERİ */
    .prod-main-image {
        height: 300px !important;
    }

    .prod-detail-section {
        padding-top: 80px !important;
    }

    .related-scroll-track {
        padding-left: 10px !important;
    }

    .zt-proj-card-wrapper {
        flex: 0 0 280px !important;
        /* Kaydırmalı kart genişliği */
    }

    /* 7. İLETİŞİM FORMU & HARİTA */
    .zcon-layout-grid {
        grid-template-columns: 1fr !important;
    }

    .zcon-row-2 {
        grid-template-columns: 1fr !important;
        /* Form inputlarını alt alta al */
    }

    .zcon-map-container {
        width: 100% !important;
        height: 300px !important;
    }

    /* 8. KOLEKSİYONLAR SAYFASI */
    .zcol-toolbar {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .zcol-container {
        padding: 40px 15px !important;
    }
}

/* --- ÇOK KÜÇÜK EKRANLAR (iPhone SE vb. - 380px altı) --- */
@media (max-width: 380px) {
    .zt-proj-card {
        height: 300px !important;
    }

    .n3d-nav-btn {
        width: 40px !important;
        height: 40px !important;
    }

    h1 {
        font-size: 1.5rem !important;
    }
}

/* =======================================================
   MOBİL İÇİN KESİN ÇÖZÜM (TAŞMALARI VE BOYUTLARI DÜZELTİR)
   ======================================================= */

@media (max-width: 768px) {

    /* 1. TÜM ANA BAŞLIKLARI KÜÇÜLT */
    h1,
    .banner-title,
    .prod-title {
        font-size: 1.5rem !important;
        /* 2.2rem çok büyüktü, 1.5'e çektik */
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        /* Uzun kelimeleri kır */
    }

    .prod-desc {
        font-size: 0.9rem !important;
        /* Açıklama yazısını küçült */
        padding-right: 0 !important;
    }

    /* 2. PROD-SPECS (Teknik Özellikler) KUTUSU DÜZELTMESİ */
    .prod-specs {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 15px !important;
        /* 30px padding mobilde çok fazla, 15px yaptık */
        margin: 0 !important;
        box-sizing: border-box !important;
        /* Padding'i genişliğe dahil et */
        overflow: hidden !important;
        /* Dışarı taşanları gizle */
    }

    /* Sol taraftaki dekoratif çizgiyi düzelt */
    .prod-specs::before {
        width: 6px !important;
        /* Çizgiyi incelt */
        left: 0 !important;
    }

    /* Liste elemanlarını sıkıştır */
    .prod-specs li {
        padding: 10px 0 !important;
        /* Satır aralarını daralt */
        font-size: 0.85rem !important;
        /* Liste yazılarını küçült */
        display: flex !important;
        justify-content: space-between !important;
        flex-wrap: wrap !important;
        /* Sığmazsa alt satıra geçsin */
    }

    .prod-specs li strong {
        text-align: right;
        max-width: 50%;
        /* Değer kısmı çok uzarsa sınırlasın */
    }

    /* 3. KONTEYNER VE KENAR BOŞLUKLARI */
    .zcol-container,
    .prod-detail-section,
    .z-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        overflow: hidden !important;
        /* Yatay kaydırmayı engelle */
    }

    /* Grid Yapısını Zorla Tek Sütun Yap */
    .prod-showcase-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        margin-bottom: 40px !important;
    }

    .prod-info-col {
        padding-top: 0 !important;
        width: 100% !important;
    }

    /* 4. RESİM ALANI */
    .prod-main-image {
        height: 280px !important;
        /* Yüksekliği biraz daha kıstık */
        border-radius: 12px !important;
        /* Kenar yuvarlaklığını azalttık */
    }
}

/* ÇOK KÜÇÜK EKRANLAR İÇİN (iPhone SE gibi) */
@media (max-width: 380px) {
    .prod-specs li {
        font-size: 0.8rem !important;
    }

    .prod-title {
        font-size: 1.3rem !important;
    }
}













@keyframes pulse {
    0% {
        box-shadow: rgba(162, 123, 92, 0.7) 0px 0px 0px 0px;
    }

    70% {
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 10px;
    }

    100% {
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes ztsFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes ztItemAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes ztUnderline {
    0% {
        transform: scaleX(0);
        transform-origin: left center;
    }

    100% {
        transform: scaleX(1);
        transform-origin: left center;
    }
}

@keyframes brickDrop {
    0% {
        opacity: 0;
        transform: translateY(-80px) scale(0.9);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

.zread-section {
    background-color: var(--bg-earth);
    padding: 60px 0px 100px;
    min-height: 100vh;
}

.zread-container {
    max-width: 1300px;
    margin: 0px auto;
    padding: 0px 20px;
}

.zread-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.zread-main-content {
    flex: 2.5 1 0%;
    background-color: var(--bg-earth);
    padding: 50px;
    border-radius: var(--zt-radius, 16px);
    box-shadow: rgba(0, 0, 0, 0.03) 0px 5px 20px;
    border: 1px solid rgba(162, 123, 92, 0.1);
}

.zread-title {
    font-family: var(--font-head);
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 20px;
}

.zmeta-item {
    font-size: 1.4rem;
    color: var(--text-muted);
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.zmeta-item i {
    color: var(--accent);
}


.zread-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zread-article-body {
    font-family: var(--font-body);
    color: rgb(74, 74, 74);
    line-height: 1.8;
    font-size: 1.05rem;
}

.zread-article-body p {
    margin-bottom: 25px;
}

.zread-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 30px;
}

.zread-subhead {
    font-family: var(--font-head);
    font-size: 1.7rem;
    color: var(--text-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.zread-subhead-small {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--text-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.zread-quote {
    background-color: rgba(162, 123, 92, 0.05);
    border-left: 5px solid var(--accent);
    padding: 30px;
    font-size: 1.2rem;
    font-style: italic;
    font-family: var(--font-head);
    color: var(--text-color);
    margin: 40px 0px;
    border-radius: 0px 12px 12px 0px;
}

.zread-footer-area {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.zread-tags,
.zread-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zread-tags span,
.zread-share span {
    font-weight: 700;
    color: var(--text-color);
}

.zread-tags a {
    font-size: 0.9rem;
    color: var(--accent);
    background: rgba(162, 123, 92, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    transition: 0.3s;
}

.zread-tags a:hover {
    background: var(--accent);
    color: rgb(255, 255, 255);
}

.z-share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgb(240, 240, 240);
    color: var(--text-color);
    transition: 0.3s;
}

.z-share-btn:hover {
    background-color: var(--accent);
    color: rgb(255, 255, 255);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .zread-layout {
        flex-direction: column;
    }

    .zread-main-content,
    .zread-sidebar {
        width: 100%;
        flex: 1 1 auto;
    }

    .zread-main-content {
        padding: 30px;
    }

    .zread-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {


    .zread-footer-area {
        flex-direction: column;
        align-items: flex-start;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0.5;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulsePrice {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        color: rgb(255, 255, 255);
    }

    100% {
        transform: scale(1);
    }
}

.zread-section {
    background-color: var(--bg-earth);
    padding: 60px 0px 100px;
    min-height: 100vh;
}

.zread-container {
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 20px;
}

.zread-layout {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0px auto;
}

.zread-main-content {
    background-color: transparent;
    padding: 0px;
    width: 100%;
    border: none;
    box-shadow: none;
}

.zread-title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 20px;
    margin-top: 20px;
}

.zread-featured-img {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: var(--shadow-soft);
}

.zread-article-body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.8;
    font-size: 1.1rem;
}

.zread-lead {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 40px;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
}

.zread-subhead {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--text-main);
    margin-top: 50px;
    margin-bottom: 25px;
}

.zread-quote {
    background-color: var(--bg-light-gray);
    border-left: 5px solid var(--accent);
    padding: 40px;
    font-size: 1.4rem;
    font-style: italic;
    font-family: var(--font-head);
    color: var(--text-main);
    margin: 50px 0px;
    border-radius: var(--radius);
}

.zread-footer-area {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--bg-light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .zread-title {
        font-size: 1.8rem;
    }

    .zread-quote {
        padding: 20px;
        font-size: 1.1rem;
    }

    .zread-footer-area {
        flex-direction: column;
        align-items: flex-start;
    }
}



        /* --- VİDEO GALERİ İÇİN EK CSS --- */
        
        /* Play Butonu Tasarımı */
        .zgal-play-btn {
            width: 70px;
            height: 70px;
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            border: 2px solid #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.8rem;
            margin-bottom: 15px;
            transform: translateY(20px) scale(0.8);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            padding-left: 5px; /* Play ikonunu optik ortalamak için */
        }

        .zgal-item:hover .zgal-play-btn {
            background-color: var(--accent); /* Tema rengi */
            border-color: var(--accent);
            transform: translateY(0) scale(1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        /* Video Süresi Rozeti (Sol Alt) */
        .video-duration {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background-color: rgba(0,0,0,0.7);
            color: #fff;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
            pointer-events: none;
        }

        /* Video Lightbox Wrapper */
        .zgal-video-container {
            position: relative;
            width: 90%;
            max-width: 1000px;
            aspect-ratio: 16 / 9; /* 16:9 Video Oranı */
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .zgal-video-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        @keyframes popIn {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        /* Close butonu video için biraz dışarıda */
        .zgal-video-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: #fff;
            font-size: 30px;
            cursor: pointer;
            transition: 0.3s;
        }
        .zgal-video-close:hover { color: var(--accent); }

    

        /* =========================================
   PROJECT SLIDER ANIMATIONS (Eksik Olanlar)
   ========================================= */

/* --- Yazı Alanı Animasyonları --- */
.slider-text-content {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}

/* Yazı çıkış efekti */
.slider-text-content.fade-out {
    opacity: 0;
    transform: translateY(20px);
}

/* Yazı giriş efekti (JS ile eklenir) */
.slider-text-content.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* --- Kart (Resim) Animasyonları --- */

/* Sola Kayarak Kaybolma */
.slide-move-left {
    animation: slideOutLeft 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Sağa Kayarak Kaybolma */
.slide-move-right {
    animation: slideOutRight 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Kartın geri geliş animasyonu (Pop-in) */
.slide-enter {
    animation: slideInPop 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* --- Keyframes (Hareket Kuralları) --- */

@keyframes slideOutLeft {
    0% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-100px) scale(0.9);
        opacity: 0;
    }
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(100px) scale(0.9);
        opacity: 0;
    }
}

@keyframes slideInPop {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Button Etkileşim Efekti (İstediğin Opaklık Ayarı) --- */
.slider-nav-btn {
    transition: all 0.3s ease;
    opacity: 1;
}

.slider-nav-btn:active {
    transform: scale(0.9);
    background-color: var(--accent-dark);
    color: #fff;
}

/* Tıklandığında diğer butonlar hafif silikleşsin istersen */
.slider-visual-wrapper.animating .slider-nav-btn {
    pointer-events: none; /* Animasyon bitene kadar tıklamayı engelle */
    opacity: 0.5;
}









.contact-page {
    padding: 5rem 0 0 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-page {
        padding: 3rem 0 0 0;
    }

    .full-width-map {
        height: 350px;
    }
}


@media (max-width: 576px) {
    .full-width-map {
        height: 300px;
    }
}

.full-width-map {
    width: 100%;
    height: 500px;
    margin-top: 0;
}

.full-width-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(10%) contrast(1.05);
}







/* Lightbox Ok İşaretleri */
.zgal-prev, .zgal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    z-index: 1001; /* Resmin üzerinde dursun */
}

.zgal-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.zgal-prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.zgal-prev:hover, .zgal-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* --- Lightbox Temel Ayarları --- */
.zgal-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999; /* En üstte durması için yüksek sayı */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Varsayılan olarak gizli */
    visibility: hidden; 
    opacity: 0;
    transition: all 0.3s ease;
}

/* --- JavaScript 'active' sınıfı ekleyince burası çalışır --- */
.zgal-lightbox.active {
    visibility: visible;
    opacity: 1;
}

/* Resim Ayarı */
.zgal-lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Kapatma Butonu */
.zgal-close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10002;
}

/* Ok İşaretleri */
.zgal-prev, .zgal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -25px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s ease;
    user-select: none;
    z-index: 10001;
}

.zgal-next { right: 10px; }
.zgal-prev { left: 10px; }
.zgal-prev:hover, .zgal-next:hover { background-color: rgba(255, 255, 255, 0.1); }






/* --- İLETİŞİM SAYFASI TASARIMI --- */

/* 1. Ana Kart Yapısı (Kitap Efekti) */
.contact-card {
    display: grid;
    grid-template-columns: 40% 60%; /* Sol daha dar, sağ (form) daha geniş */
    background-color: var(--bg-panel);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover); /* Derinlik hissi */
    overflow: hidden; /* Köşeleri tutmak için */
    border: var(--border);
    min-height: 600px;
}

/* 2. Sol Taraf: Bilgi Paneli */
.contact-info-side {
    background-color: var(--bg-light-gray); /* #EAE7DC */
    color: var(--text-main);
    padding: var(--spacing-xxl) var(--spacing-lg);
    position: relative;
    /* Doku eklemesi */
    background-image: var(--stone-texture);
}

/* Sol taraf içerik düzeni */
.info-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-title {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: var(--spacing-md);
}

.info-text {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

/* İletişim Listesi (Adres, Tel vb.) */
.info-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background-color: var(--accent); /* Toprak Kahve */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.info-detail span {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-detail p, .info-detail a {
    font-family: var(--font-body);
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.info-detail a:hover {
    color: var(--accent-hover);
}

/* Sosyal Medya Yuvarlak İkonlar */
.social-area {
    margin-top: var(--spacing-xl);
    border-top: 1px solid rgba(63, 78, 79, 0.1); /* Hafif çizgi */
    padding-top: var(--spacing-lg);
}

.social-area p {
    font-family: var(--font-head);
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-main);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s var(--ease-elastic);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.social-btn:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* 3. Sağ Taraf: Form Paneli */
.contact-form-side {
    padding: var(--spacing-xxl);
    background-color: var(--white);
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Yan yana inputlar için grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid #ddd; /* Hafif gri */
    background-color: #f9f9f9;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s var(--ease);
    box-sizing: border-box; /* Taşmayı engeller */
}

/* Focus Efektleri */
.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(162, 123, 92, 0.15); /* Accent renginin opağı */
}

/* Buton Tasarımı */
.submit-btn {
    margin-top: 10px;
    padding: 16px 32px;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* --- Responsive Ayarlar --- */
@media (max-width: 992px) {
    .contact-card {
        grid-template-columns: 1fr; /* Mobilde alt alta */
    }
    
    .contact-info-side {
        padding: var(--spacing-xl);
    }

    .contact-form-side {
        padding: var(--spacing-xl);
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr; /* Mobilde inputlar alt alta */
    }
}