.footer-bottom {
    background-color: #f5f5f5;
    color: #3e3e3d;
    font-size: 0.9rem;
    padding: 0.75rem 0;
}

.typing-indicator .dots {
    display: inline-flex;
    gap: 4px;
    margin-left: 6px;
}

.typing-indicator .dot {
    width: 6px;
    height: 6px;
    background-color: #999;
    border-radius: 50%;
    opacity: 0.4;
    animation: typing-bounce 1.2s infinite ease-in-out;
}

.typing-indicator .dot:nth-child(1) {
    animation-delay: 0s;
}

.typing-indicator .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator .dot:nth-child(3) {
    animation-delay: 0.4s;
}

.typing-indicator {
    color: #737373 !important;
    font-weight: 300;
}

@keyframes typing-bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    40% {
        transform: scale(1.4);
        opacity: 1;
    }
}

.send-btn {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px;
    border-radius: 30px;
    background: #2d3490 !important;
    border: none;
    margin-left: 16px;
    height: 44px;
    min-width: 44px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    text-align: left;
    color: #fff;
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    color: white;
}

.chat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    transition: all 0.4s ease-in-out;
}

.chat-left {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.chat-right {
    position: relative;
}

.assistant-body {
    flex-grow: 1;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #dee2e6;
    padding: 1rem;
    max-height: 60vh;
    transition: all 0.3s ease-in-out;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f2f2f2;
}

.assistant-body::-webkit-scrollbar {
    width: 6px;
}

.assistant-body::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 10px;
}

.assistant-body::-webkit-scrollbar-track {
    background: #f2f2f2;
}


.bot-message {
    justify-content: flex-start;
}

.message-content {
    padding: 0.75rem 1rem;
    border-radius: 1.25rem;
    max-width: 100%;
    background: #f6f6f6;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: #000;
    position: relative;
}


.message-time {
    font-size: 0.7rem;
    color: #000;
    margin-top: 0.3rem;
    text-align: right;
}

.quick-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    white-space: nowrap;
}

.quick-btn:hover {
    background-color: #007bff;
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-row {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .chat-overlay {
        flex-direction: column;
        padding: 1rem;
    }

    .header-row {
        justify-content: center !important;
    }

    .chat-left, .chat-right {
        flex: 1 1 100%;
    }

    .chat-right {
        display: none !important;
    }

    .quick-btn {
        flex: 1 1 45%;
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .d-flex.flex-wrap.gap-2.mt-4 {
        gap: 0.5rem !important;
        justify-content: space-between !important;
    }

    .send-btn {
        right: 0.5rem !important;
    }

    .input-area {
        margin-top: 1rem !important;
    }
}

.footer-bottom .footer-logo {
    max-height: 25px;

}

.info-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
}

.info-icon {
    font-size: 2.5rem;
    color: #2d3490;
}

.info-title {
    font-size: 1.25rem;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.info-value {
    font-size: 1.75rem;
    font-weight: 600;
    color: #343a40;
}

#user-input-main {
    font-size: 16px;
}

.close-full {
    z-index: 99;
    top:-8px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.font-h1 {
    font-size: 30px;
}

.font-p {
    font-size: 18px;
}

.assistant-body {
    transition: max-height 0.4s ease;
    min-height: 200px;
    max-height: 75vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aaa #f2f2f2;
    padding: 1rem;
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #dee2e6;
}
:root {
    --brand:#0F172A;            /* kurumsal koyu mavi/grimsi */
    --brand-acc:#2563EB;        /* vurgu (buton) */
    --surface:#ffffff;
    --border:#E5E7EB;
    --text:#0B1220;
    --muted:#6B7280;
    --radius:16px;
}

.modal-clean {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 10px 30px rgba(2,6,23,.12);
}

.modal-clean .modal-body { padding: 24px 24px; }
.modal-clean .modal-header { padding: 20px 24px 0 24px; }
.modal-clean .modal-footer { padding: 0 24px 20px 24px; }

.brand-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--brand-acc);
    opacity: .9;
}

.form-floating>.form-control {
    border-radius: 12px;
    border-color: var(--border);
    background: #fafafa;
}
.form-floating>.form-control:focus {
    border-color: rgba(37,99,235,.4);
    box-shadow: 0 0 0 .25rem rgba(37,99,235,.15);
    background: #fff;
}
.form-floating>label { color: var(--muted); }

.btn-brand {
    --bs-btn-padding-x: 1.2rem;
    --bs-btn-padding-y: .7rem;
    --bs-btn-font-weight: 600;
    background: var(--brand-acc);
    color: #fff;
    border: 0;
    border-radius: 12px;
}
.btn-brand:hover { filter: brightness(.95); }

/* küçük detay: linkler sade */
.link-secondary:hover { color: var(--brand-acc)!important; }
 #applyModal .form-control:focus { box-shadow: 0 0 0 .25rem rgba(14,165,233,.25); }
#applyModal .btn-primary { background: linear-gradient(135deg,#2563eb,#0ea5e9); border: none; }
#applyModal .btn-primary:hover { filter: brightness(.95); }

.assistant-body::-webkit-scrollbar {
    width: 8px;
}

.assistant-body::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

.assistant-body::-webkit-scrollbar-track {
    background-color: #f9f9f9;
}

.chat-message {
    display: flex;
    margin-bottom: 1rem;
    animation: fadeIn 0.3s ease-in-out;
}

.user-message {
    justify-content: flex-end;
}

.bot-message {
    justify-content: flex-start;
}

.message-content {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 1.25rem;
    background-color: #eaf4ff;
    color: #333;
    position: relative;
    font-size: 0.95rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

@media screen and (max-width: 600px) {
    .message-content {
        max-width: 100% !important;
        font-size: 0.9rem !important;
    }
    .close-full {
        top:4px!important;
    }
}

.message-list {
    padding-left: 1.2rem;
    margin: 0.5rem 0;
}

.message-content a {

    word-break: break-word;
    overflow-wrap: break-word;
}

.message-content p {
    margin-bottom: 0.5rem;
    color: black !important;
    line-height: 1.5;
    font-size: 0.95rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.message-content strong {
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.25rem;
}

.user-message .message-content {
    background-color: #00ff9e;
    color: #000;
}

.message-time {
    font-size: 0.7rem;
    color: #000;
    margin-top: 0.3rem;
    text-align: right;
}

.message-list {
    padding-left: 1.2rem;
    margin: 0.5rem 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#user-input {
    font-size: 0.95rem;
    border: 1px solid #ccc;
    box-shadow: none;
    transition: all 0.3s ease;
}

#user-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, 0.25);
}

.send-btn:hover {
    background-color: #0056b3;
}

.quick-btn {
    font-size: 12px;
    transition: background-color 0.2s ease;
}

.quick-btn:hover {
    background-color: #007bff;
    color: #fff;
}

@media (max-width: 768px) {
    .font-h1 {
        font-size: 22px;
    }

    .quick-btn {
        font-size: 11px;
    }

    .font-p {
        font-size: 15px;
    }

    .assistant-body {
        max-height: 63vh;
    }

}

.message-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    color: #333;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.message-content thead {
    background-color: #f1f1f1;
    font-weight: 600;
    white-space: nowrap;
}

.message-content th,
.message-content td {
    font-size: 11px;
    padding: 6px 8px;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
    vertical-align: middle;
    white-space: nowrap;
}

.message-content th {
    color: #444;
}

.message-content tr:hover {
    background-color: #fafafa;
}

.message-content tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .message-content table,
    .message-content thead,
    .message-content tbody,
    .message-content th,
    .message-content td,
    .message-content tr {
        width: 100%;
    }

    .message-content td {
        border-bottom: 1px solid #eee;
        min-height: 40px;
        font-size: 11px;
    }

    .message-content td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-weight: 600;
        color: #555;
        font-size: 10px;
        white-space: nowrap;
    }
}

.title-font {
    font-size: 127px;
    font-weight: 700;
    line-height: 143px;
    letter-spacing: 2.552px;
}

.sub-title-font {
    letter-spacing: -.072px;
    font-weight: 400;
    line-height: 28px;
    font-size: 18px;
}

.main {
    margin-top: 120px;
}

.brand-tile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 90px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.brand-tile img {
    max-height: 65px;
    max-width: 100%;
}

.brand-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

.brand-tile:hover img {
    filter: grayscale(0%) opacity(1);
}

@media (prefers-color-scheme: dark) {
    .brand-tile {
        background: #0f1115;
        border-color: rgba(255, 255, 255, .08);
    }
}

.task-list {
    margin: 0 auto 3rem;
    padding: 1rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    background: white;
}

.task-list .task {
    padding: 0.8rem 1.2rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-style: italic;
}

.task-list .task:last-child {
    margin-bottom: 0;
}

.task.ilham {
    border-left: 5px solid #f97316;
    color: #d97706;
}

.task.ucuslar {
    border-left: 5px solid #38bdf8;
    color: #0284c7;
}

.task.oteller {
    border-left: 5px solid #a5b4fc;
    color: #4338ca;
}

.task.seyahater {
    border-left: 5px solid #6ee7b7;
    color: #059669;
}

.task:hover {
    background: #e0e7ff;
    color: #1e293b;
    font-style: normal;
}

.cards-container {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card-custom {
    width: 280px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    background: white;
    cursor: pointer;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgb(0 0 0 / 0.15);
}

.card-custom img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem 1.6rem;
}

.card-body h5 {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 0.3rem;
    color: #334155;
}

.card-body p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
    min-height: 48px;
}

.split-hero .img-cover {
    object-fit: cover;
    min-height: 380px;
}

@media (min-width: 992px) {
    .split-hero .img-cover {
        height: 100%;
    }

    .split-hero .panel {
        min-height: 520px;
    }
}

.about-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.read-more {
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-bottom: 1px solid #000;
    padding-bottom: .25rem;
}

.activity-card img {
    border-radius: 1rem;
    object-fit: cover;
    width: 100%;
}

.activity-card {
    transition: transform .2s ease, box-shadow .2s ease;
    overflow: hidden;
    border-radius: 1rem
}

.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .12) !important
}

.activity-card .img-cover {
    object-fit: cover;
    width: 100%;
    height: 100%
}

#aktiviteler, #nedenler, #testimonials {
    margin-top: 113px;
}

#testimonials {
    margin-bottom: 130px;
}

.v-heading {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    font-weight: 800;
    color: black;
    line-height: .95;
    letter-spacing: -.5px;
    font-size: clamp(40px, 5vw, 120px);
}

@media (max-width: 991.98px) {
    .v-heading {
        writing-mode: horizontal-tb;
        transform: none;
        text-align: center;
        font-size: clamp(32px, 7vw, 64px);
        margin-bottom: 1rem;
    }
}

.right-reason {
    margin-top: 111px;
}

.left-reason {
    margin-bottom: 45px;
}

.reason-card {
    position: relative;
    border: 1px solid #000;
    background: #fff;
    padding: clamp(24px, 3vw, 48px) clamp(28px, 3.6vw, 56px) clamp(36px, 4vw, 64px);
    min-height: clamp(260px, 36vw, 360px);
}

.reason-card h3 {
    font-weight: 800;
    color: black;
    margin-bottom: .75rem;
    font-size: clamp(20px, 1.6vw, 28px);
}

.reason-card p {
    color: #333;
    max-width: 58ch;
    margin-bottom: 0;
}

.mini-arrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1.25rem;
    color: black;
    font-size: 2rem;
}


.big-index {
    position: absolute;
    right: clamp(16px, 2.6vw, 40px);
    bottom: clamp(12px, 2vw, 24px);
    font-weight: 800;
    color: black;
    font-size: clamp(36px, 5vw, 84px);
    line-height: 1;
}

#references .hero-title {
    font-weight: 800;
    font-size: 57px;
    letter-spacing: 0em;
    line-height: 1.4;
}

#references .brand-grid {
    --grid: #e5e7eb;
    border-left: 1px solid var(--grid);
    border-top: 1px solid var(--grid);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background: #fff;
}

@media (min-width: 992px) {
    #references .brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

#references .brand-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: clamp(160px, 22vw, 260px);
    box-shadow: inset -1px 0 0 var(--grid), inset 0 -1px 0 var(--grid);
    background: #fff;
}

#references .brand-tile img {
    max-height: 65px;
    width: auto;
    height: auto;
    -webkit-user-drag: none;
    user-select: none;
}

.v-col {
    min-height: 326px;
}

.v-title {
    margin: 0;
    color: #000;
    background-color: transparent;
    font-family: helvetica-w01-bold, sans-serif;
    font-weight: 700;
    font-size: 65px;
    transform: translateX(0px) translateY(0px) scaleX(1) scaleY(1) rotate(270.0001deg) skewX(0deg) skewY(0deg);
    margin-top: 57px;
    font-style: normal;
    text-decoration: none;
    text-align: right;
    letter-spacing: 0em;
    line-height: normal;
}

.v-title.nowrap {
    white-space: nowrap;
}

.footer-logo {
    width: 25%;
}

@media (max-width: 991.98px) {
    .v-col {
        min-height: auto;
    }

    .v-title {
        position: static;
        transform: none;
    }

    .right-reason {
        margin-top: 10px;
    }

    .left-reason {
        margin-bottom: 10px;
    }

    #references .hero-title {
        font-size: 28px;
    }

    .footer-logo {
        width: 100%;
    }

    small, .small {
        font-size: 100%;
    }

    .sub-title-font {
        font-size: 15px;
    }

    .title-font {
        font-size: 38px;
        line-height: 41px;
    }

    .main {
        margin-top: 20px;
    }

}
input, textarea, select {
    font-size:16px!important;
}
.map-desat {
    filter: grayscale(90%) brightness(1.05) contrast(0.9) saturate(0.6);
    width: 100%;
    height: 100%;
}

.footer-head {
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #666;
}

#site-footer .nav-link {
    color: #111;
}

#site-footer .nav-link:hover {
    text-decoration: underline;
}

.brand-script {
    font-size: 2.5rem;
    font-weight: 700;
    color: #223;
    font-family: ui-rounded, "Segoe UI", system-ui, -apple-system, "Helvetica Neue",
    "Trebuchet MS", Arial, sans-serif;
}

@media (max-width: 575.98px) {
    .newsletter .d-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter .btn {
        width: 100%;
    }
}

#cevat-cta .title-xl {
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.5px;
    position: absolute;
    top: 0;
    font-size: 80px;
    margin-top: 5rem;
}

#cevat-cta .title-lg {
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.5px;
    color: black;
    font-size: 40px;
    margin-top: 8rem;
}

.courucu {
    font-size: 60px;
    color: black;
}

#cevat-cta .hero-media {
    height: var(--hero-h);
}

#cevat-cta .left-media {
    height: 600px;
    position: relative;
}

#cevat-cta .apply-card {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    max-width: 380px;
    border-radius: 16px;
    padding: 24px 22px;
}

#cevat-cta .apply-card .btn {
    border-radius: 999px;
    padding: .6rem 1.25rem;
}

#cevat-cta .mini-card {
    background: #f2f2f2;
    border-radius: 6px;
    overflow: hidden;
}

#cevat-cta .mini-card .thumb {
    aspect-ratio: 16/9;
}

#cevat-cta .social a {
    color: #000;
    font-size: 2rem;
    line-height: 1;
}

#cevat-cta .social a:hover {
    opacity: .8;
}
.logo-img{
    margin-left: 1rem;
}
@media (max-width: 991.98px) {
    #cevat-cta .title-lg {
        font-weight: 800;
        line-height: 1.02;
        letter-spacing: 1.5px;
        color: black;
        font-size: 40px;
        margin-top: 2rem;
    }
    .logo-img{
        margin-left: 3rem;
    }
    #scroll-activate-container{display: none!important;}
    #cevat-cta .left-media {
        height: 345px;
    }

    #cevat-cta .title-xl {
        position: relative;
        font-size: 44px;
        margin-top: 2rem;
    }

    .courucu {
        font-size: 45px;
        margin-top: 20px;
    }

    #cevat-cta {
        --hero-h: 40vh;
        --left-h: 42vh;
    }

    #cevat-cta .apply-card {
        position: static;
        margin: 1rem 0;
        padding: 0px;
    }
}

.ratio-16x9 {
    --bs-aspect-ratio: 100% !important;
}