/* ============================================================
   Trawelin Tour v2 — App-level overrides
   Yüklenir: master.css'ten SONRA (bkz. _head.cshtml).
   ============================================================ */

/* ---- 1) Türkçe karakter destekli font (icon-safe) ---- */
/* body element-level override; cascade Poppins'i metinlere taşır.
   Icon selector'ları aşağıda kendi font-family'lerini explicit olarak yeniden bildirir. */
body {
    font-family: 'Poppins', 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* master.css başlık/buton/form font'larını override edebildiği için açıkça eşitle.
   Generic `span` selector'ı eklenmedi — span.icon-* ve <i> ikonları kırılmasın. */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
p, a, li, label,
.navbar-brand, .nav-link, .btn,
input, select, textarea, button {
    font-family: 'Poppins', 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---- Icon font'larını açıkça koru (author-origin font-family'leri yeniden bildir) ---- */
/* Font Awesome 5 Free (solid + regular) */
.fa, .fas, .far, .fal,
i.fa, i.fas, i.far, i.fal {
    font-family: "Font Awesome 5 Free" !important;
}
/* Font Awesome 5 Brands (fab) */
.fab,
i.fab {
    font-family: "Font Awesome 5 Brands" !important;
}
/* simple-line-icons */
[class^="icon-"], [class*=" icon-"] {
    font-family: 'simple-line-icons' !important;
}
/* Stroke-Gap-Icons */
.Stroke-Gap-Icons {
    font-family: 'Stroke-Gap-Icons' !important;
}

/* ---- 2) Navbar dil seçici ---- */
.main-menu .lang-switcher {
    margin-left: 1rem;
}

.main-menu .lang-select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 4px 28px 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23ffffff' d='M0 0l5 6 5-6z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
    transition: border-color .2s ease, background-color .2s ease;
}

.main-menu .lang-select:hover,
.main-menu .lang-select:focus {
    border-color: #fff;
    outline: none;
}

.main-menu .lang-select option {
    color: #222;
    background: #fff;
}

/* Sticky header (koyu arka plan) durumunda da okunaklı kalsın */
.header.is-sticky .main-menu .lang-select,
.header-fixed .main-menu .lang-select {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.app-home-slider {
    width: 100%;
    overflow: hidden;
}

.app-home-slider .sp-slides-container,
.app-home-slider .sp-mask,
.app-home-slider .sp-image-container {
    overflow: hidden;
}

.app-home-slider .sp-image-container {
    width: 100% !important;
    height: 100% !important;
}

.app-home-slider img.sp-image {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    object-fit: cover;
    object-position: center;
}

.app-home-slider .sp-slide::before,
.app-home-slider .sp-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.app-home-slider .sp-slide::before {
    background: rgba(0, 0, 0, 0.48);
}

.app-home-slider .sp-slide::after {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.36) 42%, rgba(0, 0, 0, 0.12) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.05) 42%, rgba(0, 0, 0, 0.46) 100%);
}

.app-home-slider .container,
.app-home-slider .sp-layer {
    position: relative;
    z-index: 2;
}

.app-home-slider .sp-layer {
    visibility: visible !important;
    opacity: 1 !important;
}

.app-home-slider .b-main-slider__title-wrap {
    display: inline-block !important;
    max-width: 760px;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.52);
}

.app-home-slider .b-main-slider__slogan {
    color: rgba(255, 255, 255, 0.92);
    visibility: visible !important;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.app-home-slider .b-main-slider__title {
    color: #fff;
    text-shadow: 0 5px 28px rgba(0, 0, 0, 0.62);
}

.app-home-slider .b-main-slider__label {
    color: #fff !important;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

/* ---- Shared page heroes ---- */
.app-page-hero,
.visa-page-hero {
    background-image: url("/nevica/img/b001.jpg");
    background-size: cover;
    background-position: center;
    min-height: 0;
    padding: 176px 0 74px;
}

.section-title-page.app-page-hero.area-bg_op_60::after,
.section-title-page.visa-page-hero.area-bg_op_60::after {
    opacity: .58;
}

.app-page-hero .area-bg__inner,
.visa-page-hero .area-bg__inner {
    display: flex;
    align-items: center;
    min-height: 0;
}

.app-visa-pages .app-page-section,
.app-visa-pages .visa-page-section,
.app-contact-page .app-page-section,
.app-tour-list-page .app-page-section,
.page-aboutus .app-page-section,
.page-checkout .app-page-section,
.app-tour-details-page .app-page-section,
.app-contact-page .visa-page-section,
.app-tour-list-page .visa-page-section,
.page-checkout .visa-page-section,
.app-tour-details-page .visa-page-section {
    position: relative;
    overflow: visible;
    padding: 86px 0 92px;
}

.app-tour-list-page .app-tour-list-section {
    padding-bottom: 118px;
}

.page-visaformentry .header:not(.navbar-scrolling),
.page-documentupload .header:not(.navbar-scrolling),
.page-gate3denginecallbackpaylater .header:not(.navbar-scrolling) {
    background-color: rgba(22, 34, 51, 0.96);
}

.page-visaformentry .app-site-main > .app-visa-pages > .page-section,
.page-documentupload .app-site-main > .app-visa-pages > .page-section,
.page-gate3denginecallbackpaylater .app-site-main > .app-visa-pages > .app-page-section {
    padding-top: 180px !important;
}

.app-visa-pages .app-page-section > .container,
.app-contact-page .app-page-section > .container,
.app-tour-list-page .app-page-section > .container,
.page-aboutus .app-page-section > .container,
.page-checkout .app-page-section > .container,
.app-tour-details-page .app-page-section > .container,
.app-visa-pages .visa-page-section > .container,
.app-contact-page .visa-page-section > .container,
.app-tour-list-page .visa-page-section > .container,
.page-checkout .visa-page-section > .container,
.app-tour-details-page .visa-page-section > .container {
    position: relative;
    z-index: 1;
}

.app-image-frame {
    overflow: hidden;
    border-radius: 8px;
    background: #f5f6f8;
}

.app-image-frame iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.app-card,
.app-contact-card,
.app-sidebar-card {
    border: 1px solid rgba(22, 34, 51, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(22, 34, 51, 0.07);
}

.app-card {
    overflow: hidden;
}

.app-form-card {
    padding: 28px;
}

.app-grid-gap {
    row-gap: 24px;
}

.app-contact-card {
    display: grid;
    gap: 10px;
    min-height: 100%;
    padding: 28px;
}

.app-contact-card .ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 127, 42, 0.12);
    color: #ff7f2a;
    font-size: 20px;
}

.app-contact-card .ui-title-inner {
    margin-bottom: 0;
}

.app-contact-card p {
    margin-bottom: 0;
    color: #4f5662;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.app-form-card textarea.form-control {
    min-height: 132px;
    resize: vertical;
}

.app-image-cover {
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

/* ---- Tour list cards ---- */
.app-tour-list-section .app-goods-grid {
    width: 100%;
}

.app-tour-list-section .b-goods-group-2 {
    row-gap: 26px;
}

.app-tour-card-column {
    display: flex;
}

.app-tour-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(22, 34, 51, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(22, 34, 51, 0.08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.app-tour-card:hover,
.app-tour-card:focus-within {
    transform: translateY(-3px);
    border-color: rgba(255, 127, 42, 0.3);
    box-shadow: 0 22px 42px rgba(22, 34, 51, 0.13);
}

.app-tour-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #162233;
}

.app-tour-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 26%, rgba(0, 0, 0, 0.58) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.02) 64%);
    pointer-events: none;
}

.app-tour-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .22s ease;
}

.app-tour-card:hover .app-tour-card__media img,
.app-tour-card:focus-within .app-tour-card__media img {
    transform: scale(1.03);
}

.app-tour-card__badge {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 1;
    display: inline-flex;
    gap: 7px;
    align-items: center;
    width: fit-content;
    max-width: calc(100% - 28px);
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: #253044;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.app-tour-card__badge i {
    color: #ff7f2a;
}

.app-tour-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
}

.app-tour-card__head {
    display: grid;
    gap: 10px;
}

.app-tour-card__title {
    color: #222;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.32;
}

.app-tour-card__title:hover,
.app-tour-card__title:focus {
    color: #ff7f2a;
    text-decoration: none;
}

.app-tour-card__price {
    color: #ff7f2a;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
}

.app-tour-card__price span {
    color: #727986;
    font-size: 12px;
    font-weight: 700;
}

.app-tour-card__meta {
    display: grid;
    gap: 8px;
    color: #596170;
    font-size: 12.5px;
    line-height: 1.45;
}

.app-tour-card__meta span {
    display: inline-flex;
    gap: 8px;
    align-items: flex-start;
}

.app-tour-card__meta i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: #ff7f2a;
}

.app-tour-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.app-tour-card__actions .btn {
    display: inline-flex;
    flex: 1 1 124px;
    gap: 6px;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    white-space: normal;
    text-transform: none;
}

.app-tour-card__actions .btn i {
    flex: 0 0 auto;
    font-size: 12px;
}

.app-tour-card__actions .btn-border {
    border-color: rgba(22, 34, 51, 0.18);
    color: #253044;
    background: #fff;
}

.app-tour-card__actions .btn-border:hover,
.app-tour-card__actions .btn-border:focus {
    border-color: #ff7f2a;
    color: #ff7f2a;
    background: rgba(255, 127, 42, 0.08);
}

.app-tour-card__title:focus-visible,
.app-tour-card__media:focus-visible,
.app-tour-card__actions .btn:focus-visible,
.app-pager .btn:focus-visible {
    outline: 3px solid rgba(255, 127, 42, 0.55);
    outline-offset: 3px;
}

.app-sidebar-card {
    padding: 24px;
}

.visa-destination-sidebar {
    position: sticky;
    top: 108px;
    padding: 0;
    overflow: hidden;
}

.visa-destination-sidebar__head {
    margin-bottom: 0;
    padding: 24px 24px 18px;
    border-bottom: 1px solid rgba(22, 34, 51, 0.08);
    background: linear-gradient(180deg, rgba(255, 127, 42, 0.09), rgba(255, 255, 255, 0));
}

.visa-destination-sidebar__head .ui-title-inner {
    margin-bottom: 0;
    color: #253044;
}

.app-radio-list {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.visa-destination-sidebar__item {
    position: relative;
    margin: 0;
    padding: 0;
}

.visa-destination-sidebar__item .form-check-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.visa-destination-sidebar__item .form-check-label {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 48px;
    padding: 8px 12px;
    border: 1px solid rgba(22, 34, 51, 0.08);
    border-radius: 8px;
    background: #fff;
    color: #3f4754;
    line-height: 1.35;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background-color .18s ease;
}

.visa-destination-sidebar__item .form-check-label:hover {
    border-color: rgba(255, 127, 42, 0.28);
    background: #fffaf6;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(22, 34, 51, 0.07);
}

.visa-destination-sidebar__item .form-check-input:checked + .form-check-label {
    border-color: rgba(255, 127, 42, 0.58);
    background: #fff4ea;
    color: #222;
    box-shadow: inset 4px 0 0 #ff7f2a, 0 10px 22px rgba(22, 34, 51, 0.08);
}

.visa-destination-sidebar__item .form-check-input:focus-visible + .form-check-label {
    outline: 3px solid rgba(255, 127, 42, 0.35);
    outline-offset: 2px;
}

.visa-destination-sidebar__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(22, 34, 51, 0.06);
    color: #ff7f2a;
    font-size: 13px;
}

.visa-destination-sidebar__item .form-check-input:checked + .form-check-label .visa-destination-sidebar__mark {
    background: #ff7f2a;
    color: #fff;
}

.app-pager .btn {
    min-width: 38px;
    min-height: 38px;
    margin: 4px;
    padding: 8px 12px;
    border-radius: 6px;
    line-height: 1.2;
}

.app-empty-state {
    padding: 42px 28px;
    border: 1px solid rgba(22, 34, 51, 0.08);
    border-radius: 8px;
    background: #fff;
    text-align: center;
    box-shadow: 0 12px 30px rgba(22, 34, 51, 0.07);
}

.app-empty-state__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: rgba(255, 127, 42, 0.12);
    color: #ff7f2a;
}

/* ---- About page ---- */
.app-about-section {
    background:
        linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}

.app-about-intro {
    position: relative;
    padding: 34px;
    border: 1px solid rgba(22, 34, 51, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(22, 34, 51, 0.08);
}

.app-about-copy .ui-title {
    margin-bottom: 18px;
    color: #253044;
}

.app-about-copy .app-content-html {
    color: #4f5662;
    font-size: 15px;
    line-height: 1.85;
}

.app-about-copy .app-content-html p:last-child {
    margin-bottom: 0;
}

.app-about-visual {
    position: relative;
    overflow: visible;
    background: transparent;
}

.app-about-visual .app-image-cover {
    display: block;
    width: 100%;
    min-height: 360px;
    object-fit: cover;
}

.app-about-values {
    padding-top: 28px;
}

.app-about-value-card {
    min-height: 100%;
    padding: 28px;
}

.app-about-value-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: rgba(255, 127, 42, 0.12);
    color: #ff7f2a;
}

.app-about-value-card .ui-title-inner {
    margin-bottom: 12px;
    color: #253044;
}

/* ---- Tour details + checkout ---- */
.app-section-head {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(22, 34, 51, 0.08);
}

.app-section-head .ui-title-inner {
    margin-bottom: 0;
}

.app-tour-details-section .single-full-title {
    margin-bottom: 24px !important;
    border-bottom-color: rgba(22, 34, 51, 0.08) !important;
}

.app-tour-details-section .single-title h2 {
    margin-bottom: 0;
    color: #222;
    font-size: 30px;
    line-height: 1.25;
}

.app-tour-gallery {
    row-gap: 18px;
}

.app-tour-gallery__image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: 8px !important;
    background: #162233;
    box-shadow: 0 12px 28px rgba(22, 34, 51, 0.11);
}

.app-tour-details-section .description {
    color: #4f5662;
    font-size: 15px;
    line-height: 1.8;
}

.app-tour-details-section .description p:last-child {
    margin-bottom: 0;
}

.app-tour-details-section #highlight > .mt-2 {
    display: grid;
    gap: 8px;
    margin-bottom: 28px;
    padding: 0;
    list-style: none;
}

.app-tour-details-section #highlight > .mt-2 li {
    position: relative;
    padding-left: 22px;
    color: #3f4754;
    line-height: 1.55;
}

.app-tour-details-section #highlight > .mt-2 li::before {
    content: "";
    position: absolute;
    top: .72em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff7f2a;
}

.app-tour-details-section .form-main {
    margin: 24px 0 34px;
}

.app-tour-booking {
    margin: 30px 0 38px;
}

.app-tour-booking__panel {
    padding: 26px;
    border: 1px solid rgba(22, 34, 51, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(22, 34, 51, 0.09);
}

.app-tour-booking__head {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(22, 34, 51, 0.08);
}

.app-tour-booking__head .ui-title-inner {
    margin-bottom: 0;
    color: #253044;
    font-size: 21px;
    line-height: 1.3;
}

.app-tour-booking__capacity {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    min-height: 36px;
    padding: 7px 12px;
    border-radius: 8px;
    background: rgba(255, 127, 42, 0.1);
    color: #d95f00;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.app-tour-booking__grid {
    display: grid;
    grid-template-columns: minmax(190px, 1.25fr) repeat(3, minmax(150px, 1fr)) minmax(170px, .9fr);
    gap: 16px;
    align-items: end;
}

.app-tour-booking__field {
    min-width: 0;
}

.app-tour-booking__field label {
    display: block;
    margin-bottom: 7px;
    color: #596170;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.app-tour-booking__control {
    position: relative;
}

.app-tour-booking__control i {
    position: absolute;
    top: 50%;
    left: 14px;
    z-index: 1;
    color: #ff7f2a;
    font-size: 14px;
    transform: translateY(-50%);
    pointer-events: none;
}

.app-tour-booking__control input,
.app-tour-booking__control select {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px 10px 40px;
    border: 1px solid rgba(22, 34, 51, 0.14);
    border-radius: 8px;
    background-color: #fff;
    color: #222;
    font-size: 14px;
    line-height: 1.3;
    box-shadow: none;
}

.app-tour-booking__control select:disabled {
    color: #8a8f98;
    background-color: #f2f3f5;
}

.app-tour-booking__control input:focus,
.app-tour-booking__control select:focus {
    border-color: #ff7f2a;
    outline: 3px solid rgba(255, 127, 42, 0.18);
    outline-offset: 0;
}

.app-tour-booking__hint {
    display: block;
    min-height: 17px;
    margin-top: 6px;
    color: #8a8f98;
    font-size: 11px;
    line-height: 1.35;
}

.app-tour-booking__field_action {
    align-self: end;
}

.app-tour-booking__field_action .nir-btn {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
}

.app-tour-details-section .form-main .row {
    border: 1px solid rgba(22, 34, 51, 0.08);
    border-radius: 8px !important;
    background: #fff;
    box-shadow: 0 14px 34px rgba(22, 34, 51, 0.08);
}

.app-tour-details-section .form-content-in {
    flex-wrap: wrap;
    gap: 14px;
    padding: 22px 0;
}

.app-tour-details-section .form-group,
.app-tour-details-section .selection-box {
    flex: 1 1 220px;
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
}

.app-tour-details-section .selection-box select,
.app-tour-details-section .calendar-default,
.page-checkout .form-control {
    min-height: 46px;
    border: 1px solid rgba(22, 34, 51, 0.14);
    border-radius: 6px;
    color: #222;
    background-color: #fff;
    box-shadow: none;
}

.app-tour-details-section .selection-box select:focus,
.app-tour-details-section .calendar-default:focus,
.page-checkout .form-control:focus,
.page-checkout .form-check-input:focus {
    border-color: #ff7f2a;
    outline: 3px solid rgba(255, 127, 42, 0.18);
    outline-offset: 0;
    box-shadow: none;
}

.app-tour-details-section .nir-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
}

.app-tour-details-section .travellers-info {
    overflow-x: auto;
    border: 1px solid rgba(22, 34, 51, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(22, 34, 51, 0.07);
}

.app-tour-details-section .travellers-info .table {
    margin-bottom: 0;
}

.app-tour-details-section .travellers-info th {
    border-top: 0;
    color: #253044;
    font-size: 13px;
    white-space: nowrap;
}

.app-tour-details-section .travellers-info td {
    vertical-align: middle;
}

.app-tour-details-section .travellers-info td img {
    width: 150px !important;
    max-width: 100%;
    height: 96px !important;
    margin-right: 14px;
    border-radius: 8px;
    object-fit: cover;
}

.app-tour-details-section .room-price {
    color: #ff7f2a;
    font-weight: 800;
    white-space: nowrap;
}

.page-checkout .app-form-card {
    overflow: visible;
}

.page-checkout .form-group label {
    margin-bottom: 7px;
    color: #333;
    font-size: 13px;
    font-weight: 700;
}

.app-checkbox-list {
    display: grid;
    gap: 10px;
}

.app-checkbox-list .form-check,
.page-checkout .form-check {
    padding: 12px 12px 12px 36px;
    border: 1px solid rgba(22, 34, 51, 0.08);
    border-radius: 8px;
    background: #fbfbfc;
}

.app-checkout-blocker h3 {
    margin-bottom: 10px;
    color: #253044;
    font-size: 18px;
}

.app-checkout-blocker ul {
    margin-bottom: 14px;
    padding-left: 20px;
}

.checkout-bank-info {
    display: grid;
    gap: 14px;
    margin: 0 0 24px;
}

.checkout-bank-info[hidden] {
    display: none;
}

.checkout-bank-info__header {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 8px;
    background: #253044;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.checkout-bank-info__header i {
    color: #ffcc05;
}

.checkout-bank-card {
    overflow: hidden;
    border: 1px solid rgba(22, 34, 51, 0.08);
    border-radius: 8px;
    background: #fff;
}

.checkout-bank-card__head {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(22, 34, 51, 0.08);
    background: #fbfbfc;
    color: #253044;
    font-weight: 800;
}

.checkout-bank-card__head i {
    color: #ffcc05;
}

.checkout-bank-card__body {
    display: grid;
    gap: 8px;
    padding: 14px;
}

.checkout-bank-company {
    color: #596170;
    font-size: 12px;
    line-height: 1.45;
}

.checkout-iban-row {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 9px 10px;
    border-radius: 8px;
    background: #fbfbfc;
}

.checkout-iban-currency {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    border-radius: 5px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.checkout-iban-currency.cur-try {
    background: #d32f2f;
}

.checkout-iban-currency.cur-eur {
    background: #1565c0;
}

.checkout-iban-currency.cur-usd {
    background: #2e7d32;
}

.checkout-iban-number {
    overflow-wrap: anywhere;
    color: #253044;
    font-family: "Courier New", Courier, monospace;
    font-size: 13px;
    font-weight: 700;
}

.checkout-iban-copy {
    border: 0;
    border-radius: 6px;
    background: #ffcc05;
    color: #253044;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 10px;
}

.checkout-iban-copy.copied {
    background: #2e7d32;
    color: #fff;
}

.checkout-submit-message {
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .checkout-iban-row {
        grid-template-columns: 1fr;
    }

    .checkout-iban-currency {
        width: 48px;
    }

    .checkout-iban-copy {
        width: 100%;
    }
}

.app-passenger-block {
    padding: 20px;
    border: 1px solid rgba(22, 34, 51, 0.08);
    border-radius: 8px;
    background: #fbfbfc;
}

.app-passenger-block h4 {
    margin-bottom: 16px;
    color: #253044;
    font-size: 17px;
    line-height: 1.3;
}

.app-summary-card {
    position: sticky;
    top: 108px;
    padding: 24px;
    border: 1px solid rgba(22, 34, 51, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(22, 34, 51, 0.08);
}

.app-summary-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.app-summary-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(22, 34, 51, 0.08);
    color: #596170;
    line-height: 1.45;
}

.app-summary-list strong {
    color: #253044;
    text-align: right;
    overflow-wrap: anywhere;
}

.app-summary-total {
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 127, 42, 0.1);
    color: #d95f00;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.page-checkout .btn[type="submit"] {
    min-height: 44px;
    padding-right: 24px;
    padding-left: 24px;
    border-radius: 6px;
}

.page-checkout .btn[type="submit"]:focus-visible,
.app-tour-details-section .nir-btn:focus-visible {
    outline: 3px solid rgba(255, 127, 42, 0.55);
    outline-offset: 3px;
}

/* ---- Kapı Vizesi text ---- */
.app-gate-visa-description {
    max-width: 980px;
    color: #555;
    line-height: 1.75;
}

.app-gate-visa-description ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    padding: 18px 20px;
    margin: 18px 0;
    list-style: none;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.app-gate-visa-description li {
    position: relative;
    padding-left: 22px;
    color: #333;
    font-weight: 500;
}

.app-gate-visa-description li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff7f2a;
}

.app-gate-visa-description .app-gate-visa-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    margin: 22px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.app-gate-visa-description .app-gate-visa-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding-left: 0;
    color: #333;
    font-weight: 500;
}

.app-gate-visa-description .app-gate-visa-list li::before {
    content: none;
}

.app-gate-visa-description .app-gate-visa-list i {
    flex: 0 0 auto;
    margin-top: 5px;
    color: #ff7f2a;
    font-size: 14px;
}

.app-gate-visa-home {
    gap: 24px 0;
    padding-top: 20px;
}

.app-gate-visa-home .ui-title {
    margin-bottom: 20px;
}

.app-gate-visa-home__image {
    overflow: hidden;
    border-radius: 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.app-gate-visa-home__image .about-image {
    display: block;
    width: 100%;
    margin-left: 0;
    aspect-ratio: 4 / 3;
    height: auto;
    max-height: 520px;
    padding: 18px;
    background: transparent;
    object-fit: contain;
    object-position: center;
}

.visa-info-original-section {
    background-image: url("/images/background_pattern.png");
    background-position: bottom right;
    background-repeat: no-repeat;
}

.visa-info-original-section .about-content {
    position: relative;
    z-index: 1;
}

.visa-info-original-section .border-b {
    position: relative;
    margin-bottom: 24px !important;
}

.visa-info-original-section .border-b::after {
    content: "";
    display: block;
    width: 68px;
    height: 3px;
    margin-top: 14px;
    background: #ff7f2a;
}

.visa-info-content {
    color: #555;
    line-height: 1.75;
}

.visa-info-content .card {
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(22, 34, 51, 0.06);
}

.visa-info-content .card-body {
    padding: 24px 26px;
}

.visa-info-content h4,
.visa-info-content h5 {
    color: #222;
}

.visa-info-content h5 {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.35;
}

.visa-info-content h5 i {
    flex: 0 0 auto;
    color: #ff7f2a;
}

/* ---- Visa information page ---- */
.app-section-kicker {
    margin-bottom: 8px;
    color: #ff7f2a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.visa-info-layout {
    display: grid;
    gap: 34px;
}

.visa-info-summary {
    max-width: 880px;
}

.visa-info-summary .ui-title {
    margin-bottom: 14px;
}

.visa-info-summary__action,
.visa-forms-back {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.visa-info-summary__action {
    margin-top: 10px;
}

.visa-info-grid {
    align-items: stretch;
}

.visa-info-grid > [class*="col-"] {
    margin-bottom: 24px;
}

.visa-info-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(22, 34, 51, 0.06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.visa-info-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 127, 42, 0.28);
    box-shadow: 0 16px 34px rgba(22, 34, 51, 0.1);
}

.visa-info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: rgba(255, 127, 42, 0.12);
    color: #ff7f2a;
    font-size: 17px;
}

.visa-info-card .ui-title-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    line-height: 1.35;
}

.visa-info-card .app-content-html {
    flex: 1 1 auto;
}

.visa-info-card__actions {
    margin-top: 0;
    white-space: nowrap;
}

.visa-info-notes {
    padding-top: 2px;
}

.visa-info-notes .alert {
    margin-bottom: 0;
    border: 0;
    border-left: 4px solid #ffb347;
    border-radius: 8px;
}

/* ---- Visa forms page ---- */
.app-visa-forms-head {
    margin-bottom: 24px;
}

.app-visa-forms-head .ui-title,
.app-visa-forms-panel__head .ui-title {
    margin-bottom: 0;
}

.app-visa-forms-head .ui-title {
    max-width: 760px;
}

.app-visa-forms-panel {
    padding: 28px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(22, 34, 51, 0.08);
}

.app-visa-forms-panel__head {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.app-visa-forms-panel__head p {
    max-width: 680px;
    margin: 0;
    color: #555;
    line-height: 1.7;
}

.app-visa-forms-count,
.visa-form-group__head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 127, 42, 0.12);
    color: #d95f00;
    font-size: 13px;
    font-weight: 700;
}

.visa-form-group {
    width: 100%;
    min-height: 100%;
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    background: #fbfbfc;
}

.visa-form-group__head {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.visa-form-group__head .ui-title-inner {
    margin-bottom: 0;
}

.visa-form-list {
    display: grid;
    gap: 10px;
}

.visa-form-link {
    display: grid;
    grid-template-columns: 36px 1fr 28px;
    gap: 12px;
    align-items: center;
    min-height: 52px;
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    background: #fff;
    color: #333;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.visa-form-link:hover,
.visa-form-link:focus {
    color: #222;
    text-decoration: none;
    transform: translateY(-1px);
    border-color: rgba(255, 127, 42, 0.32);
    box-shadow: 0 8px 20px rgba(22, 34, 51, 0.08);
}

.visa-form-link__icon,
.visa-form-link__download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.visa-form-link__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 127, 42, 0.1);
    color: #ff7f2a;
}

.visa-form-link__name {
    overflow-wrap: anywhere;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.visa-form-link__download {
    color: #8a8f98;
}

.visa-forms-info-cta {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    padding: 22px 24px;
    border: 1px solid rgba(255, 127, 42, 0.22);
    border-radius: 8px;
    background: #fff8f2;
}

.visa-forms-info-cta p {
    max-width: 760px;
    margin: 0;
    color: #444;
    line-height: 1.65;
}

.visa-forms-info-cta .visa-forms-back {
    flex: 0 0 auto;
}

/* ---- Popular regions showcase ---- */
.app-region-gallery-section {
    padding-top: 90px;
}

.app-region-gallery-head {
    max-width: 860px;
    margin: 0 auto;
}

.app-region-gallery {
    padding-top: 8px;
}

.app-region-showcase {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: 24px;
}

.app-region-showcase__item {
    min-width: 0;
}

.app-region-showcase__item--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.ui-gallery__img.app-region-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
    min-height: 100%;
    border: 1px solid rgba(22, 34, 51, 0.08);
    background: #162233;
    box-shadow: 0 16px 34px rgba(22, 34, 51, 0.13);
    isolation: isolate;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ui-gallery__img.app-region-card::before,
.ui-gallery__img.app-region-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ui-gallery__img.app-region-card::before {
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: inherit;
}

.ui-gallery__img.app-region-card::after {
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(6, 15, 25, 0.04) 0%, rgba(6, 15, 25, 0.3) 48%, rgba(6, 15, 25, 0.86) 100%),
        linear-gradient(115deg, rgba(22, 34, 51, 0.6) 0%, rgba(22, 34, 51, 0.08) 58%);
    transition: opacity .22s ease;
}

.app-region-card__mark {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
}

.app-region-card__content {
    position: absolute;
    right: 22px;
    bottom: 20px;
    left: 22px;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.app-region-card__content::after {
    content: "";
    flex: 0 0 44px;
    height: 2px;
    margin-bottom: 9px;
    border-radius: 999px;
    background: #ff7f2a;
    box-shadow: 0 0 0 4px rgba(255, 127, 42, 0.14);
}

.app-region-label {
    display: block;
    min-width: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.22;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
    overflow-wrap: anywhere;
}

.app-region-card--featured .app-region-label {
    max-width: 90%;
    font-size: 31px;
    line-height: 1.14;
}

.ui-gallery__img.app-region-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: transform .32s ease, filter .32s ease;
}

.ui-gallery__img.app-region-card:hover img,
.ui-gallery__img.app-region-card:focus img {
    filter: saturate(1.06) contrast(1.03);
    transform: scale(1.045);
}

.ui-gallery__img.app-region-card:hover,
.ui-gallery__img.app-region-card:focus {
    text-decoration: none;
    transform: translateY(-4px);
    border-color: rgba(255, 127, 42, 0.32);
    box-shadow: 0 24px 48px rgba(22, 34, 51, 0.2);
}

.ui-gallery__img.app-region-card:hover::after,
.ui-gallery__img.app-region-card:focus::after {
    opacity: .88;
}

.ui-gallery__img.app-region-card:focus-visible {
    outline: 3px solid rgba(255, 127, 42, 0.72);
    outline-offset: 3px;
}

@media (max-width: 991.98px) {
    .app-page-hero,
    .visa-page-hero {
        padding: 144px 0 58px;
    }

    .app-visa-pages .app-page-section,
    .app-visa-pages .visa-page-section,
    .app-contact-page .app-page-section,
    .app-tour-list-page .app-page-section,
    .page-aboutus .app-page-section,
    .page-checkout .app-page-section,
    .app-tour-details-page .app-page-section,
    .app-contact-page .visa-page-section,
    .app-tour-list-page .visa-page-section,
    .page-checkout .visa-page-section,
    .app-tour-details-page .visa-page-section {
        padding: 70px 0 76px;
    }

    .page-visaformentry .app-site-main > .app-visa-pages > .page-section,
    .page-documentupload .app-site-main > .app-visa-pages > .page-section,
    .page-gate3denginecallbackpaylater .app-site-main > .app-visa-pages > .app-page-section {
        padding-top: 112px !important;
    }

    .app-sidebar-card {
        margin-top: 10px;
    }

    .visa-destination-sidebar {
        position: static;
        top: auto;
    }

    .app-tour-booking__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .app-tour-booking__field_action {
        grid-column: 1 / -1;
    }

    .app-summary-card {
        position: static;
        top: auto;
    }

    .visa-info-card {
        min-height: 0;
    }

    .visa-info-card__actions {
        white-space: normal;
    }

    .app-region-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 220px;
    }
}

@media (max-width: 767.98px) {
    .app-gate-visa-description ul {
        grid-template-columns: 1fr;
    }

    .app-home-slider .sp-slide::before {
        background: rgba(0, 0, 0, 0.56);
    }

    .app-home-slider .sp-slide::after {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.18) 46%, rgba(0, 0, 0, 0.56) 100%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.18) 100%);
    }

    .app-home-slider .sp-layer {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        transform: none !important;
    }

    .app-home-slider .b-main-slider__title-wrap {
        max-width: min(330px, calc(100vw - 32px));
    }

    .app-home-slider .b-main-slider__title {
        font-size: 38px;
        line-height: 1.08;
    }

    .app-home-slider .b-main-slider__slogan {
        letter-spacing: 2px;
    }

    .app-gate-visa-home__image .about-image {
        padding: 12px;
    }

    .app-tour-card__body,
    .app-form-card,
    .app-contact-card,
    .app-sidebar-card {
        padding: 20px;
    }

    .app-tour-details-section .single-title h2 {
        font-size: 24px;
    }

    .app-tour-details-section .form-content-in {
        display: grid !important;
        grid-template-columns: 1fr;
        padding: 20px 0;
    }

    .app-about-intro,
    .app-tour-booking__panel {
        padding: 20px;
    }

    .app-tour-booking__head {
        display: grid;
        gap: 12px;
    }

    .app-tour-booking__capacity {
        width: 100%;
        justify-content: center;
        white-space: normal;
    }

    .app-tour-booking__grid {
        grid-template-columns: 1fr;
    }

    .app-about-visual .app-image-cover {
        min-height: 260px;
    }

    .app-tour-details-section .form-group,
    .app-tour-details-section .selection-box {
        flex-basis: auto;
        width: 100% !important;
    }

    .app-tour-details-section .travellers-info td,
    .app-tour-details-section .travellers-info th {
        min-width: 140px;
    }

    .app-tour-details-section .travellers-info td:first-child {
        min-width: 220px;
    }

    .app-passenger-block {
        padding: 16px;
    }

    .app-summary-total {
        font-size: 21px;
    }

    .app-tour-card__actions {
        flex-direction: column;
    }

    .app-image-frame iframe {
        min-height: 320px;
    }

    .visa-info-card {
        min-height: 0;
    }

    .app-visa-forms-panel {
        padding: 20px;
    }

    .app-visa-forms-panel__head,
    .visa-form-group__head {
        align-items: flex-start;
    }

    .app-visa-forms-panel__head {
        flex-direction: column;
    }

    .visa-forms-info-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .visa-forms-info-cta .visa-forms-back {
        width: 100%;
    }

    .app-region-showcase {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 18px;
    }

    .app-region-showcase__item--featured {
        grid-column: auto;
        grid-row: auto;
    }

    .ui-gallery__img.app-region-card {
        min-height: 230px;
    }

    .ui-gallery__img.app-region-card img {
        min-height: 230px;
    }

    .app-region-card__mark {
        top: 14px;
        left: 14px;
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .app-region-card__content {
        right: 16px;
        bottom: 16px;
        left: 16px;
        gap: 12px;
    }

    .app-region-card__content::after {
        flex-basis: 32px;
    }

    .app-region-label,
    .app-region-card--featured .app-region-label {
        max-width: none;
        font-size: 20px;
    }

    .visa-form-link {
        grid-template-columns: 34px 1fr 24px;
    }
}
