/* input(521,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '@media'
input(662,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '@media'
input(670,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '@media'
input(976,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '@media' */
/* Global Styles */
:root {
    --primary-font: 'Onest', sans-serif;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray: #1a1a1a;
    --color-light-gray: #f5f5f5;
    --transition-speed: 0.5s;
    --padding-section: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 80px !important
}

.bg-black {
    background-color: var(--color-black);
}

.text-white {
    color: var(--color-white);
}

.bg-white {
    background-color: var(--color-white);
}

.text-black {
    color: var(--color-black);
}

.bg-light-gray {
    background-color: var(--color-light-gray);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

h1 {
    font-size: 5rem;
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

h2 {
    font-size: 3.5rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 2rem;
    font-weight: 500;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.subtitle {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid currentColor;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline {
    color: var(--color-white);
    border-color: var(--color-white);
}

    .btn-outline:hover {
        background-color: var(--color-white);
        color: var(--color-black);
    }

.btn-black {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

    .btn-black:hover {
        background-color: transparent;
        color: var(--color-black);
    }

/* Header */
/* Header Sabit Ayarlar */
#site-header {
    height: 80px; /* Sabit y�kseklik */
    background-color: transparent;
    transition: background-color 0.3s ease; /* Sadece renk ge�i�i */
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-header-inside {
    background-color: #000 !important;
    position: sticky;
    top: 0;
    z-index: 1030; /* bootstrap navbar �st�nde kals�n */
    background-color: #fff;
}

/* Yaz� ve Link Renkleri (�stteyken Beyaz) */
#site-header .nav-link,
#site-header .navbar-brand,
#site-header .action-icon {
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 80px; /* Header y�ksekli�i ile ayn� yaparak dikey ortal�yoruz */
    padding: 0 20px !important;
    transition: color 0.3s ease;
}

/* G�rseldeki Kahverengi Kutu (Aktif Eleman) */
#site-header .nav-item.active .nav-link {
    background-color: #8d735b;
    height: 80px; /* Header'� tam kaplamas� i�in */
    display: block;
}

/* --- SCROLLED DURUMU (1px bile kaysa) --- */
#site-header.scrolled {
    background-color: #ffffff !important;
    border-bottom: 1px solid #eeeeee;
}

    /* Scroll olunca yaz�lar�n siyaha d�nmesi */
    #site-header.scrolled .nav-link,
    #site-header.scrolled .navbar-brand,
    #site-header.scrolled .action-icon {
        color: #000000 !important;
    }

    /* Scroll olunca aktif kutunun rengi de�i�mesin istersen sabit tutabilirsin */
    #site-header.scrolled .nav-item.active .nav-link {
        color: #ffffff !important; /* Kutu i�indeki yaz� beyaz kals�n */
    }

#site-header .nav-link:hover {
    transition: ease-in-out 0.3s;
    color: #fff !important;
    background-color: #664425;
}

/* �kon Temizli�i */
.action-icon {
    text-decoration: none;
}

/* Hero Slider */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

    .hero-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.3); /* Overlay */
    }

    .hero-slide.active {
        opacity: 1;
        visibility: visible;
    }

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 800px;
}

/*News Start*/
.news-section h3 {
    font-size: 20px !important;
    font-weight: 500 !important;
}


/*News End*/

/*Teams Section Start*/
/* Team Card */
.team-card {
    position: relative;
    overflow: hidden;
}

/* Image */
.team-image img {
    width: 100%;
    display: block;
}

/* Overlay */
.team-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%; /* yar�ya kadar */
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    text-align: center;
    padding: 20px;
}

/* Hover */
.team-card:hover .team-overlay {
    transform: translateY(0);
}

/* Name */
.team-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

/* Role */
.team-role {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

/* Social Icons */
.team-socials {
    display: flex;
    gap: 12px;
}

    .team-socials a {
        font-size: 14px;
        color: #000;
        transition: opacity 0.2s ease;
    }

        .team-socials a:hover {
            opacity: 0.6;
        }

/*Teams Section End*/

/* Services */
.services-layout {
    display: block;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.accordion-wrapper {
    margin-top: 80px !important;
}

.accordion-item {
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    cursor: pointer;
}

    .accordion-item:last-child {
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .accordion-header h3 {
        margin: 0;
        transition: color 0.3s;
        font-size: 38px;
        font-weight: 600;
        letter-spacing: -0.02em;
    }

.icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-item.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding-top: 0;
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* Adjust as needed */
    padding-top: 20px;
}

.service-list {
    padding-left: 20px;
    margin-top: 10px;
}

    .service-list li {
        list-style: disc;
        margin-bottom: 5px;
        opacity: 0.7;
    }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Container Ayarlar� */
/* Container ve Track ayn� kal�yor */
.vertical-slider-container {
    position: relative;
    height: 65vh;
    overflow: hidden;
    background-color: #f0f0f0;
}

.vertical-slider-track {
    position: relative;
    height: 100%;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.v-slide {
    height: 80vh;
    width: 100%;
    position: relative;
}

.v-slide-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

    .v-slide-image a {
        border: 1px solid #ffffff87 !important;
        padding: 10px 20px !important;
        font-size: 12Px !important;
        border-radius: 5px !important
    }

/* --- Navigasyon Noktalar� (G�NCELLEND�) --- */
.v-slider-controls {
    position: absolute;
    /* Sa� yerine SOL tarafa ald�k */
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px; /* Noktalar aras� bo�luk biraz azald� */
}

.v-dot {
    /* Yaz� ayarlar�n� kald�rd�k, �ekil ayarlar�na ge�tik */
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3); /* Pasif durum: Yar� saydam beyaz */
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px; /* Hafif yumu�ak k��e kare (Referans g�rseldeki gibi) */
    /* Tam yuvarlak istersen: border-radius: 50%; yap */
}

    /* Hover Durumu */
    .v-dot:hover {
        background-color: rgba(255, 255, 255, 0.7);
    }

    /* Aktif Slayt Durumu */
    .v-dot.active {
        background-color: #fff; /* Aktif durum: Tam beyaz */
        transform: scale(1.3); /* Aktifken biraz daha b�y�s�n */
    }

/* Di�er ba�l�k ve karartma stilleri ayn� */
.v-slide-image h2, .v-slide-image a {
    position: relative;
    z-index: 2;
    color: #fff !important;
    top: 35%;
    left: 15%;
    font-size: 3rem;
    line-height: 1;
    max-width: 350px;
}

.v-slide-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
}

.process-text {
    padding: 50px;

    @media (max-width: 900px) {
        padding: 0 !important;
    }
}

.process-image {
    height: 600px;
    background-size: cover;
    background-position: center;
}

/* Footer */
.footer {
    background: #8a705b;
    font-size: 13px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.footer-content p {
    font-size: 14px !important;
    font-weight: 100 !important;
    color: #fff !important;
}

    .footer-content p span {
        opacity: 0.8 !important;
        font-weight: 100 !important;
    }

.footer-social a:hover {
    text-decoration: underline;
}

.footer-divider {
    border-color: rgba(255,255,255,.3);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

    .footer-links a:hover {
        text-decoration: underline;
    }

@media (max-width: 900px) {

    .section-padding {
        padding: 80px 0px !important;
    }
}


/*TAB START*/

.arkiz-tabs {
    max-width: 700px;
}

.arkiz-tabs__nav {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.arkiz-tabs__nav-item {
    cursor: pointer;
    font-size: 18px;
    color: #9a9a9a;
    position: relative;
    padding-bottom: 6px;
}

    .arkiz-tabs__nav-item.is-active {
        color: #000;
    }

        .arkiz-tabs__nav-item.is-active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 28px;
            height: 2px;
            background-color: #000;
        }

.arkiz-tabs__pane {
    display: none;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

    .arkiz-tabs__pane.is-active {
        display: block;
    }

/*TAB END*/

.works-title {
    color: #D1C8B8 !important;
}

.about-title {
    color: #806A57 !important;
}

.process-title {
    color: #8B5B2B !important;
}

.team-title, .team-title, .news-title, .about-title, .works-title, .process-title {
    font-size: 10.5rem !important;
    font-weight: 800 !important;

    @media (max-width: 900px) {
        font-size: 2.5rem !important;
    }
}

#footer {
    padding: 80px;

    @media (max-width: 900px) {
        padding: 0 !important;
    }
}


/*Lets Work Together Start*/



.process-container {
    position: relative;
    top: 10%;
}

.together-btn {
    border: 2px solid #fff !important;
    padding: 15px 30px !important;
    border-radius: 5px;
}

/*Lets Work Together End*/


/*Landing Image Start*/
.landing-image {
    overflow-x: hidden;
}

.landing-container {
    padding: 0;
}

    .landing-container img {
        width: 100%;
        height: auto;
        display: block; /* �nemli */
    }

/*Landing Image End*/

/*Blog Section Start*/
/* Blog Card */
.blog-card {
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Blog Image */
.blog-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
}

/* Blog Content */
.blog-content {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    /* Blog Title */
    .blog-content h3 {
        font-size: 19px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 10px;
        line-height: 1.4;
        /* 2 sat�rdan sonra ... */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-content p {
        font-size: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

/* Meta Info */
.blog-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #777;
    margin-bottom: 16px;
    align-items: center;
}

    .blog-meta span {
        font-weight: 600 !important;
    }

        .blog-meta span:first-child {
            display: flex;
            align-items: center;
            gap: 4px;
            border: 1px solid #77777769;
            border-radius: 15px !important;
            padding: 2px 12px !important;
        }

/* Read More */
.read-more {
    font-size: 11px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    margin-top: auto; /* her zaman en alta yap���r */
}

    .read-more:hover {
        text-decoration: underline;
    }

/*Blog Section End*/

/*Process Section Start*/
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    position: relative;
}

    /* Ortadaki �izgi */
    .process::before {
        content: "";
        position: absolute;
        top: 55px;
        left: 10%;
        right: 10%;
        height: 1px;
        background: #c8b6a6;
        z-index: 0;
    }

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.circle {
    width: 110px;
    height: 110px;
    border: 1px solid #c8b6a6;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #8b6b4f;
    position: relative;
    background: #fff;
}

.step-num {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #8b6b4f;
    color: #fff;
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h4 {
    font-size: 14px;
    font-weight: 600;
    color: #8b6b4f;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    max-width: 220px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .process {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 80px;
    }

    .process-text h2 {
        font-size: 26px !important;
    }

    .process::before {
        display: none;
    }

    .hero-section h1 {
        font-size: 2rem !important;
    }
}

.comment-banner{
    height: 60vh !important;
}

.together-work {
    height: 80vh !important;
}

@media (max-width: 480px) {
    .process {
        grid-template-columns: 1fr;
    }
}
/*Process Section End*/

/*Comment Section Start*/

.quote-section {
    overflow: hidden;
}

/* Item */
.quote-item {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.quote-icon {
    font-size: 80px;
    line-height: 1;
    display: block;
    margin-bottom: 30px;
}

.quote-item p {
    font-size: 32px;
    color: #020014;
    margin-bottom: 30px;
}

.quote-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.quote-role {
    font-size: 12px;
    color: #777;
}

/* Owl dots */
.owl-dots {
    margin-top: 40px;
    text-align: center;
}

.owl-dot span {
    width: 8px;
    height: 8px;
    background: #ccc !important;
}

.owl-dot.active span {
    background: #000 !important;
}

/* MOBIL */
@media (max-width: 768px) {
    .quote-icon {
        font-size: 60px;
        margin-bottom: 20px;
    }

    .quote-item p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/*Comment Section End*/

.comment-banner .bg-img {
    width: 100% !important;
    object-fit: cover;

    @media (max-width: 900px) {
        height: 100%;
    }
}

