@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');


:root {
    /* AKDENORA Brand Colors */
    --brand-primary: #1e3a5f;
    --brand-gold: #c5a059;
    --brand-gold-dark: #a98544;
    --brand-dark: #122238;
    --brand-light: #f9f6f0;

    /* Site Properties */
    --background-color: #fff;
    --main-color: #475e8a;
    --alternate-color: #f4e79c;
    --main-text-color: #2d3e5f;
    --soft-text-color: #6c757d;
    --column-gap: 10px;
    --main-gap: 20px;
    --section-gap: 60px;
    --main-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --box-shadow: 0 4px 20px rgba(71, 94, 138, 0.1);
    --box-shadow-hover: 0 8px 30px rgba(71, 94, 138, 0.15);
    --border-radius: 12px;
    --small-border-radius: 6px;
    --border-color: rgba(71, 94, 138, 0.15);
    --transparent-color: rgba(71, 94, 138, 0.1);
    --transparent-color-2: rgba(71, 94, 138, 0.05);

    /* Font Properties */
    --font-size: 15px;
    --mobile-font-size: 14px;
    --line-height: 1.6em;
    --letter-spacing: 0.3px;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* Form Elements */
    --input-color: #2d3e5f;
    --input-padding: 0 16px;
    --input-height: 48px;
    --input-border: solid 1px rgba(71, 94, 138, 0.2);
    --placeholder-color: #6c757d;
    --textarea-padding: 12px 16px;
    --button-color: #475e8a;
    --button-hover-color: #f4e79c;
    --button-padding: 0 32px;
    --button-height: 48px;
    --button-border: none;
}

body {
    margin: 0;
    padding: 0;
    padding-top: 76px;
    background: var(--background-color);
    font-family: "Manrope", sans-serif;
}

html {
    font-size: var(--font-size);
    font-weight: var(--font-regular);
    color: var(--main-text-color);
    scroll-behavior: smooth;
}

* {
    text-decoration: none !important;
    outline: none !important;
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

::placeholder {
    color: var(--placeholder-color);
}

.panel-text {
    font-size: 1rem;
    color: #181a1f;
    margin-bottom: -10px;
    font-weight: var(--font-regular);
    text-align: justify;
}

.panel-text img,
.panel-text iframe,
.panel-text video {
    max-width: 100%;
}

.panel-text iframe {
    width: 100%;
}

.panel-text h1,
.panel-text h2,
.panel-text h3,
.panel-text h4,
.panel-text h5,
.panel-text h6 {
    display: block;
    margin-bottom: 10px;
    font-weight: var(--font-medium);
    color: var(--main-text-color);
}

.panel-text h1 {
    font-size: 1.6em;
}

.panel-text h2 {
    font-size: 1.5em;
}

.panel-text h3 {
    font-size: 1.4em;
}

.panel-text h4 {
    font-size: 1.3em;
}

.panel-text h5 {
    font-size: 1.2em;
}

.panel-text h6 {
    font-size: 1em;
}

.panel-text p {
    display: block;
    margin-bottom: 10px;
}

.panel-text b {
    font-weight: 600;
}

.panel-text ul {
    list-style: circle;
    display: block;
    padding-left: 20px;
}

.panel-text ul li {
    margin-bottom: 5px;
    position: relative;
}

.panel-text>* {
    color: #181a1f !important;
}


.section-gray {
    padding: 40px 0;
    background: #f3f2d1;
}

.section-blue {
    padding: 40px 0;
    background: #f3f2d1;
}


.main-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: var(--button-border);
    background: linear-gradient(95.14deg, #8b5308, #eb8d11 91.74%);
    padding: var(--button-padding);
    height: 50px;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 8px;
}

.main-btn.small {
    height: calc(var(--button-height) / 1.4);
}

/* .main-btn:hover {
    background: linear-gradient(94.57deg, #c12700 3.41%, #ff4600 96.59%);
} */

.main-btn>span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    position: relative;
    line-height: 3;
    letter-spacing: .15px;
    z-index: 10;
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
}


.main-btn.small>span {
    font-size: 0.8rem;
    text-transform: unset;
}

.main-btn>span>i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 24px;
    height: 24px;
    font-size: 1.2rem;
}

.main-btn.small>span>i {
    font-size: 1rem;
    min-width: 20px;
    height: 20px;
}

.main-btn.full-width {
    display: flex;
    width: 100%;
}

.main-btn.full-height {
    height: 100%;
}

.main-btn.no-radius {
    border-radius: 0;
}

.showcase-form {
    padding: 10px;
    background: rgb(255 255 255 / 30%);
    box-shadow: var(--box-shadow);
    border-radius: 2px;
    border: solid 1px rgb(255 255 255);
}

.showcase-form .main-btn {
    height: 50px;
    width: 100%;
    background: linear-gradient(95.14deg, #e52c43, #ff6c00 91.74%);
    color: #fff;
    border-radius: 8px;
}

.showcase-form .passenger-select {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #fff;
    font-size: 1.1rem;
    font-weight: var(--font-medium);
    color: var(--input-color);
    padding: var(--input-padding);
    border: none;
    border-radius: var(--border-radius);
    padding-left: 35px;
    position: relative;
    cursor: pointer;
}

.showcase-form .passenger-select>i {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 10px;
    font-size: 1.4rem;
    color: var(--main-text-color);
}

.search-group {
    display: block;
    position: relative;
    width: 100%;
}

.search-group>input {
    display: block;
    width: 100%;
    font-size: 1.1rem;
    font-weight: var(--font-medium);
    color: #181a1f;
    height: 50px;
    padding: var(--input-padding);
    border: none;
    padding-left: 35px;
    background: #fff;
}

.search-group>i {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 10px;
    font-size: 1.4rem;
    color: #424242;
}

.main-title {
    display: block;
    font-size: 2rem;
    font-weight: var(--font-medium);
    color: #181a1f;
    text-align: center;
    margin-bottom: var(--main-gap);
    position: relative;
}


.main-title-white {
    display: block;
    font-size: 2rem;
    font-weight: var(--font-medium);
    color: #1e293b;
    text-align: center;
    margin-bottom: var(--main-gap);
    position: relative;
}

.main-title-white:before {
    content: "";
    position: absolute;
    bottom: calc(var(--main-gap) / -2);
    left: 50%;
    transform: translate(-50%, 0);
    width: 120px;
    max-width: 100%;
    border-bottom: solid 1px #e2e8f0;
}

.main-title-white:after {
    content: "";
    position: absolute;
    bottom: calc(var(--main-gap) / -2 - 2px);
    left: 50%;
    transform: translate(-50%, 0);
    width: 20px;
    height: 4px;
    background: #1e293b;
    ;
}


.live-result {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.2);
    max-height: 300px;
    z-index: 1200;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 5px;
}

.live-result .title {
    width: 100%;
    background: #28A0D8;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 10px;
}

.live-result .item {
    padding: 10px 10px;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    cursor: pointer;
    color: #181a1f;
    border-bottom: solid 1px #eee;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: 1ms ease-in-out all;
    background-color: #fff;
    border-radius: 2px;
}

.live-result .item:last-child {
    border-bottom: none;
}

.live-result .item i {
    font-size: 20px;
    line-height: 26px;
    color: #424242aa;
    margin-right: 15px;
}

.live-result .item:hover {
    border-radius: 5px;
    background: #f0f2f7;
    color: #181a1f !important;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.2);
    transition: 1ms ease-in-out all;
}

.dropdown-menu.show {
    display: flex;
    flex-direction: column;
    padding: 20px;
    min-width: 45px;
    width: 13rem;
    text-align: center;
}

.passenger-menu {
    margin: 0 !important;
    top: 100% !important;
    left: 50% !important;
    transform: translate(-65%, 11%) !important;
    border: solid 1px #ddd;
    border-radius: 0;
    background-color: #fff;

}

.passengers-pad {
    padding-right: 16px !important;
    padding-left: 16px !important;
    margin-bottom: 15px;
}

.slide-group>input,
.slide-group>.dropdown .dropdown-toggle {
    display: block;
    width: 100%;
    padding: 0 10px;
    padding-top: 20px;
    padding-bottom: 19px;
    padding-left: 40px;
    border: solid 1px #696969;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    background: #fff;
    text-align: left;
    color: #1e293b;
    border-radius: 5px;
}

.yolcu-select {
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px transparent;
    background: #fff;
    height: 50px;
}

.yolcu-select>span>i {
    position: absolute;
    top: 15.2px;
    left: 22px;
    color: #181a1f;
}


.passenger-line>label {
    margin-bottom: 0px;
    color: #424242aa;
}

.route {
    background: #f1f5f9;
    color: #1e293b;
    padding-bottom: 1rem;
    padding-top: 1rem;
}

.space {
    height: 5rem;
}

.step1-header-background {
    display: flex;
    background-position: 0 50%;
    height: 7rem;
    background-size: cover;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.index {
    max-width: 1200px;
    font-size: 1.3rem;
}

.route-details {
    border: 1px solid #dee2e6 !important;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 7px 29px 0 rgba(100, 100, 111, .2);
    padding: 1rem;
}

.route-info {
    position: relative;
    width: 100%;
}

.route-info-text {
    position: relative !important;
    margin-bottom: 0.5rem !important;
    padding-left: 0.25rem !important;
    font-size: 14px !important;
    margin-top: 0.5rem !important;
}

.route-info-icon {
    display: flex;
    align-items: center;
    justify-content: center !important;
}

.child {
    display: none;
}

.car-selection {
    margin-bottom: 0 !important;
    padding: 15px;
    border: solid 1px #e3e5ea;
}

.car-selection:hover {
    background: #f0f2f7;
}

.car-selection:not(:last-child) {
    border-bottom: none !important;
}

.car-selection:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.car-selection:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.car-img {
    position: relative;
    display: block;
    width: 100%;
}

.car-image {
    position: relative;
    overflow: hidden;
    padding-top: calc(3 / 4 * 100%) !important;
}


.car-image>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.car-name {
    font-size: 16px !important;
    font-weight: 600;
    text-align: left;
    color: #181a1f;
}

.services {
    padding-left: 0;
    list-style: none;
    font-size: 14px;
}

.services-title {
    margin-bottom: 20px;
    font-weight: 700;
    color: #28A0D8 !important;
}

.services-item {
    padding-bottom: 0.25rem !important;
    padding-top: 0.25rem !important;
    margin-bottom: 0.50rem !important;
}

.services-item>div>.bold {
    font-weight: 700;
    text-align: start;
}

.icon {
    padding-top: 0.5rem !important;
    padding-right: 0rem !important;
    font-size: 18px !important;
}

.price {
    font-size: 22px;
}

.semibold {
    font-weight: 600;
    font-size: 15px;
}

.bottom-services {
    font-size: 12px;
    cursor: pointer;
    background-color: white;
    padding-top: 0.5rem;
    padding-bottom: 0;
    flex: 0 0 100%;
    max-width: 100%;
    border-top: 1px solid #dee2e6 !important;
    border-bottom: 1px solid #dee2e6 !important;
}

.orange {
    border-top: 10px solid #efa728;
    border-left: 10px solid transparent;
    position: relative;
    right: 0;
}

.p-all {
    padding: 0.5rem !important;
}

.step2-nav {
    z-index: 99;
    background: white;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    position: relative;
    padding: 0.5rem 1rem;
    height: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.sn-logo>.step2-logo {
    width: 300px;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.4));
}


.cnt {
    display: flex;
    justify-content: space-between;
}

.cnt>span {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.checkout-box {
    border-radius: 10px;
    /* border: 1px solid #cecece !important; */
    box-shadow: 0 7px 29px 0 rgba(255, 255, 255, .1);
    padding: 1rem !important;
    margin-bottom: 1rem;
}

.checkout-title {
    color: #181a1f !important;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.checkout-label {
    color: #181a1f;
}

.checkout-input {
    display: block;
    width: 100%;
    height: 40px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #181a1f;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.form-group {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.select2-container {
    width: 340px !important;
}

.select2-container:focus {
    border: 1px solid #ced4da !important;
}

.form-group.alternate>input,
.form-group.alternate>.iti>input,
.form-group.alternate>textarea,
.form-group.alternate>.select2-container .select2-selection--single,
.form-group.alternate>.passenger-box {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    color: #181a1f;
    padding: unset;
    height: unset;
    border: none;
    background-color: transparent !important;
    min-height: 24px;
}

.iti {
    width: 100%;
}

.journey-details {
    padding: 1rem;
}

.step-2-car-name {
    font-size: 1.2rem;
    color: #a97b2c
}

.csp {
    color: #181a1f;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: .2rem;
}

.csg {
    color: #181a1f;
    font-size: 13px;
    margin-bottom: 1rem;
}

.total-payment {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: end;
}

.info-box {
    background-color: rgba(186, 223, 147, .6);
    color: #444;
    font-size: 14px;
    padding: 1rem;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    height: auto;
}

.location {
    bottom: 0;
    left: 5px;
    position: absolute;
    top: 0
}

.location:before {
    bottom: 30px;
    content: "";
    left: 15px;
    border-left: 1px dashed #000;
    position: absolute;
    top: 20px
}

.location .icon-1 {
    left: 10px;
    position: absolute;
    top: 5px
}

.location .icon-2 {
    bottom: 16px;
    left: 10px;
    position: absolute
}

.trip-title {
    font-size: 1rem;
    font-weight: 600;
    color: #181a1f;
}

.datepicker-group {
    position: relative;
}

.policy {
    display: flex;
    flex-direction: row;
    color: #181a1f;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    position: relative;
    left: 98%;
    width: 20px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
}

.btn-primary:hover {
    background-color: #a97b2c;
    color: #fff;
    border-color: #a97b2c;
}

.btn-primary.focus,
.btn-primary:focus {
    background-color: #a97b2c;
    color: #fff;
    border-color: #a97b2c;
    box-shadow: none;
}

input[type=checkbox] {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.counter {
    display: block;
    padding: 5px;
    border: solid 2px #FF751D;
    line-height: 22px;
    color: #FF751D;
    height: 2.5rem;
    text-align: center;
    width: 2.5rem;
    border-radius: 10px;
}

.counter:hover {
    color: #AD0014;
    border: solid 2px #AD0014;
}

.counter-title {
    font-size: 1.5rem;
}

.buttons {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.custom-hr {
    border: 1px solid rgba(0, 0, 0, .1);
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
}


.extra-lines,
.rextra-lines {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column-reverse;
    width: 100%;
}

.extra-lines>.caption,
.rextra-lines>.caption {
    font-size: 14px;
    line-height: 20px;
    color: #1e293b;
    margin-bottom: 10px;
}

.extra-lines>.item~.caption,
.rextra-lines>.item~.caption {
    display: none;
}

.extra-lines>.item,
.rextra-lines>.item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    color: #444;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

.extra-lines>.item>span:last-child,
.rextra-lines>.item>span:last-child {
    text-align: right;
    color: #1e293b;
    font-weight: 600;
}

.checkout-payment {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment {
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    padding: 5px 10px 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;
    text-transform: uppercase;
    font-weight: 700;
}

.payment.active {
    border: 1px solid #a97b2c;
    background-color: #fff;
    transition: 1s;
}

.payment .payment-content {
    text-align: center;
    width: 100%;
    min-height: 55px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: #181a1f;
}

.payment>i {
    font-size: 3rem;
    color: #181a1f;
}

.ex-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.extra-items {
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    color: #181a1f;
}


.form-box {
    background: transparent;
    border: solid 1px #eee;
    padding: 20px;
    padding-bottom: 0;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 7.1%;
}

.form-box .row {
    margin-left: -10px;
    margin-right: -10px;
}

.form-box .row>[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.form-box .title {
    display: block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
}

.form-box .title-in {
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 10px;
}

.form-box .title~.title-in {
    margin-top: -8px;
}

.rez-complete-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 15px;
    margin-bottom: 20px;
    background: transparent;
    border: solid 1px #ddd;
    border-radius: 5px;
}

.rez-complete-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.rez-complete-box>.head {
    display: block;
    text-align: center;
}

.rez-complete-box>.head>i {
    display: block;
    font-size: 50px;
    line-height: 56px;
    color: #181a1f;
    margin-bottom: 10px;
}

.rez-complete-box>.head>.message {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #181a1f;
}

.rez-number-box {
    display: block;
    text-align: center;
}

.rez-number-box>span:first-child {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    padding: 5px 10px;
    width: 100%;
    background: var(--brand-primary);
}

.rez-number-box>span:last-child {
    display: block;
    padding: 10px 15px;
    background: none;
    border: solid 2px #181a1f;
    color: #181a1f;
    font-weight: 600;
}

.rez-complete-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.rez-complete-contact>div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 5px 10px;
}

.rez-complete-contact>div>i {
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #222;
    background: #cc3333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    margin-right: 5px;
}

.rez-complete-contact>div>a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #1e293b !important;
}

.rez-complete-contact>div>a:hover {
    text-decoration: underline !important;
}

.destinations-banner {
    background-position: 0 77%;
    height: 7rem;
    background-size: cover;
}

.breadcrumb-item {
    color: #181a1f;
}


.destination-links {
    color: #444
}

.customer-comments {
    width: 100%;
}

.yildiz {
    color: #fe9506;
}

.dmr {
    margin-right: 1rem;
}

.dml {
    margin-left: 1rem;
}

.smt {
    margin-top: 2%;
}

.dmb {
    margin-bottom: 1.5rem;
}

.d-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    border: solid 1px #00000000;
    border-radius: 5px;
    padding: 5px
}

.d-price>span {
    font-size: 16px;
    font-weight: 600;
    color: #155b91;
}

.step2-footer {
    padding: 25px;
    margin-top: 25px;
}

.step2-img>img {
    width: 20rem;
    filter: contrast(0) brightness(2) drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.4));
}

.booking-input {
    width: 100%;
}

.booking-input:first-child {
    margin-bottom: 1rem;
}

.booking-form {
    border: solid 2px orange;
    border-radius: 5px;
    padding: 1rem;
}

.booking-span {
    font-size: 15px;
    font-weight: 600;
}

.booking-i {
    display: flex;
    flex-direction: row;
}

.booking-i:first-child {
    margin-bottom: 1rem;
}


.bege {
    display: block;
    height: 25rem;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -15px;
    margin-bottom: -14px;
    border-radius: 0 5px 5px 0;
    position: relative;
}

.bege:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #fff, hsla(0, 0%, 100%, .45) 70%, hsla(0, 0%, 100%, 0))
}

.book-container {
    min-height: 34.5rem;
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.booking-form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lr-title {
    margin-bottom: 1rem;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
}

.profile-dropdown {
    color: #444;
}

.btn-gray {
    background-color: #f8f9fa;
    color: #444;
    border-color: #f8f9fa;
}

#yolcu {
    color: #181a1f
}


.main {
    border: solid 2px orange;
    border-radius: 2rem;
    padding: 2rem;
}

.selection {
    height: 100%;
}


.ftr-slogan {
    display: block;
    margin-bottom: 10px;
}

.ftr-slogan>.item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ftr-slogan>.item>span {
    display: block;
    font-size: 14px;
    line-height: 18px;
    color: #475569 !important;
    margin-bottom: 10px;
}

.nav-breadcrumb {
    padding-top: 16px !important;
    background-size: cover;
    color: #181a1f;
    margin-top: 20px !important;
}


/* PAGINATION START */

.pagination {
    display: block;
    width: 100%;
    padding: 0;
    margin: 10px 0;
}

.pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination ul li {
    margin: 2px;
    display: block;
}

.pagination ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    border-radius: 0;
    background: #fff;
    border: solid 1px #e2e8f0;
    color: #1e293b !important;
    border-radius: 3px;
}

.pagination ul li a:hover {
    background: #f1f5f9;
}

.pagination ul li.active a {
    background: #FE9506;
    border-color: #FE9506;
    color: #fff !important;
}

/* PAGINATON END */

.return-toggler {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border: solid 1px transparent;
    background: white;
    border-radius: 10px;
    height: 50px;
    color: #444;
}


.dest-car-selection {
    border: 1px solid #dee2e6 !important;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 7px 29px 0 rgba(100, 100, 111, .2);
    margin-bottom: 1.5rem !important;
    padding: 2rem;
    flex-direction: column;
}

.language-dropdown {
    transform: translate3d(-20px, 23px, 0px) !important;
    width: 9rem !important;
    min-width: 9rem !important;
    text-align: left !important;
}

.total-price {
    color: #181a1f !important;
}

.pointer {
    cursor: pointer;
}

.dash-form {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #4444444a;
    margin-top: 5px;
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.btn-secondary {
    background-color: #74512D !important;
    border-color: #74512D !important;
}

.btn-secondary:hover {
    background-color: #FEBA17 !important;
    border-color: #FEBA17 !important;
}

.error-label {
    color: red;
    font-size: 12px;
}

#phone-error {
    position: absolute;
}

.rf-title {
    padding: 0;
    margin-bottom: 15px;
    padding: 10px 20px;
    background: #f1f5f9;
    border: solid 1px #e2e8f0;
}

.rf-title span {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #1e293b;
    font-weight: 600;
}

.rf-body {
    padding: 0;
}

.sn-money {
    border: solid 1px #8d222242;
    border-radius: 5px;
    padding: 0.25rem;
}

.sn-money>a {
    color: #444
}

.gallery-item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 20px;
    border: solid 1px #ddd;
}

.gallery-item>.img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3/4*100%);
}

.gallery-item>.img>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease 0s;
}

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

.gallery-item:hover>.img:before {
    left: 0;
}

.gallery-item>.img:after {
    content: "\F0415";
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Material Design Icons";
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
    transition: 0.2s ease 0s;
    border-radius: 50%;
}

.gallery-item:hover>.img:after {
    background: rgba(0, 0, 0, 0.7);
}

.gallery-item>.desc {
    padding: 5px 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: 0.2s ease 0s;
}

.gallery-item:hover>.desc {
    background: #f1f5f9;
}

.gallery-item>.desc>span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-slider-area {
    display: block;
    width: 100%;
    position: relative;
    z-index: 50;
    border-bottom: 1px solid rgba(0, 0, 0, 0.6);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    min-height: 580px;
    /* vitrin verisi olmasa bile form görünür */
    background: #f8fafc;
}

.main-slider-container {
    width: 100%;
    position: relative;
}

.main-banner {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 525px;
    background: #fff;
}

.main-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 10%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
}

.main-banner>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Çerçeveye tam oturur, ancak orantısı bozulabilir */
}


.main-slider-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    pointer-events: none;
}

.main-slider-buttons>div {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    position: relative;
    background: none;
    pointer-events: all;
}

.main-slider-buttons>div:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Material Design Icons";
    font-weight: 400;
    font-size: 24px;
    line-height: 1.6 30px;
    color: #fff;
}

.main-slider-buttons>div.prev:before {
    content: "\F0142";
}

.main-slider-buttons>div.next:before {
    content: "\F0141";
}

.slide-desc {
    position: absolute;
    top: 170px;
    display: flex;
    width: 100%;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
    text-align: start;
}

.slide-desc .title {
    display: block;
    font-size: 45px;
    line-height: 1.2;
    padding-bottom: 0;
    color: #fff;
    font-weight: 700;
    text-shadow: 4px 5px #222;
}

.slide-desc .desc {
    display: block;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    margin-top: 10px;
    text-shadow: 2px 2px #222;
    text-align: center;
}

.slide-desc-in {
    pointer-events: all;
    text-align: center;
}

.main-slider-items {
    width: 100%;
    z-index: 1000;
    background: #00000000;
    align-self: flex-end;
    position: absolute;
    bottom: 50px;
}


.b-black {
    background-color: #f8fafc !important;
}

.f-black {
    color: #181a1f !important;
}


.b-white {
    background-color: #fff !important;
}


.pad-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.dropdown-toggle::after {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #1e293b;
}


.chk {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#return-transfer {
    width: 100%;
    margin-top: 20px;
}

.live-transfer-price-round {
    width: 25px !important;
    height: 25px !important;
    border-radius: 50% !important;
}

.policy>input[type=checkbox] {
    width: 33px !important;
    height: 33px !important;
}


.collapse-item {
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    border: solid 1px #ddd;
}

.collapse-item:last-child {
    margin-bottom: 0;
}

.collapse-item>.title {
    display: block;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #1e293b;
    width: 100%;
    padding: 10px 15px;
    padding-right: calc(15px + 15px + 10px);
    background: #f1f5f9;
    cursor: pointer;
    height: unset !important;
    border: none;
    margin: 0;
    position: relative;
}

.collapse-item>.title:after {
    content: "\F0142";
    font-family: "Material Design Icons";
    font-weight: 900;
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 14px;
    line-height: 20px;
    height: calc(22px + 10px + 10px);
    width: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.collapse-item>.title[aria-expanded="true"]:after {
    content: "\F0140";
}

.collapse-item>.title[aria-expanded="true"] {

    background-color: var(--brand-primary);
}

.collapse-item>.content {
    border-top: solid 1px #ddd;
}

.collapse-item>.content>.content-inner {
    padding: 15px;
}

.collapse-item>.content>.content-inner>p {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #475569;
    margin: 0;
}


.smb {
    margin-bottom: 2%;
}

.f-20 {
    font-size: 20px;
}

.psg-item:not(:last-child) {
    margin-bottom: .5rem
}

.contact-page-items {
    display: block;
}

.contact-page-items>.item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.contact-page-items>.item:not(:last-child) {
    margin-bottom: 10px;
}

.contact-page-items>.item>i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    border: solid 2px #a97b2c;
    color: #a97b2c;
    margin-right: 10px;
}

.contact-page-items>.item>div>span:first-child {
    display: block;
    font-size: 1rem;
    font-weight: var(--font-bold);
    color: #a97b2c;
    margin-bottom: 5px;
}

.contact-page-items>.item>div>span:last-child,
.contact-page-items>.item>div>a {
    display: block;
    font-size: 1rem;
    color: #181a1f;
}

.contact-page-items>.item>div>a:hover {
    text-decoration: underline !important;
}


.ftr-links i {
    position: relative;
    color: #475569 !important;
    font-size: 20px;
    margin-right: 5px;
}


#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--brand-primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    line-height: 1.6;
    color: #fff !important;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.2s ease 0s;
    z-index: 999;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    opacity: 0.5;
}

.phone-fixed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    line-height: 1.6;
    color: #fff !important;
    background: rgb(215, 163, 6);
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.2s ease 0s;
    z-index: 999;
}

.phone-fixed:hover {
    transform: scale(1.1);
    opacity: 0.5;
}

.card-body {
    padding: .5rem !important;
}

.card-title {
    margin-bottom: .25rem;
}

.main-color {
    color: #222831;
}

.price-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    margin-left: 15px;
    border-radius: 5px;
    padding: 15px;
    border: solid 1px transparent;
}

.price-box>.price {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #181a1f;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    height: 100%;
    margin-bottom: 10px;
}

.price-box>.main-btn-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 11px 21px;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    font-weight: 600;
    color: #fff !important;
    border: none;
    background: linear-gradient(95.14deg, #8b5308, #eb8d11 91.74%);
    transition: 0.2s ease 0.1s;
    overflow: hidden;
    border-radius: 5px;
    white-space: nowrap;
    width: 100%;
}

.price-options-2 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-option-2 {
    display: flex;
    align-items: center;
}

.price-option-2 label {
    margin-left: 5px;
    margin-top: 10px;
    font-size: 17px;
    font-weight: 600;
    color: #181a1f;
}

.price-option-2 span {
    margin-left: 5px;
    margin-top: 10px;
}

.selected-price {
    margin-top: 20px;
    font-weight: bold;
}

.price-option-2 {
    display: flex;
    align-items: center;
}


.transfer-note {
    margin-top: 5px;
}

.rad-ton[type="radio"] {
    display: none;
}

.rad-but {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.rad-but::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    margin-right: 10px;
    box-sizing: border-box;
}

.rad-ton[type="radio"]:checked+label::before {
    background-color: #1852ff;
    /* Seçilme rengi */
    border-color: var(--brand-primary);
}

.step2-msg {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-image {
    padding-top: calc(360 / 1140 * 100%);
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 8px;
}

.blog-image>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease 0s;
}

.blog-image:hover>img {
    transform: scale(1.1);
}


.leftf {
    float: left;
    padding: 10px 10px;
    position: relative;
    left: 7px;
}

.leftf.dotted-gradient {
    background-image: linear-gradient(to bottom, #000 40%, rgba(255, 255, 255, 0) 20%);
    background-position: left;
    background-size: 1px 5px;
    background-repeat: repeat-y;
}

.bold {
    font-weight: 700;
}


.new-hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
    width: 100%;
}


.msg-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background: #f1f5f9;
    border: solid 1px #e2e8f0;
}

.msg-box i {
    min-width: 30px;
    height: 30px;
    color: #181a1f;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 16px;
    line-height: 22px;
    background: #a97b2c;
    border-radius: 3px;
}


.msg-box span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #1e293b;
}

.iti--separate-dial-code .iti__selected-dial-code {
    color: #181a1f;
}


.destination-item>.desc .dm {
    color: #64748b;
    font-weight: 300;
    font-size: 13px;
}


.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #1e293b !important;
}

.add-border {
    border: solid 1px #a97b2c;
    border-radius: 10px;
}


.payment-method label {
    color: #1e293b;
}


.container-1200 {
    max-width: 1200px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}


.blog-title {
    color: #181a1f;
    text-shadow: 0px 0px 2px #ffffffbf;
}

.mt-40px {
    margin-top: 40px;
}


.page-gallery {
    position: relative;
}

.page-gallery .row {
    margin-left: -5px;
    margin-right: -5px;
}

.page-gallery>.gal-btn {
    position: absolute;
    bottom: 20px;
    right: 10px;
}

.page-gallery .row>[class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

.page-gal-item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3/4*100%);
    margin-bottom: 8px;
    border-radius: 10px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

.page-gal-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: 0.2s ease 0s;
}

.page-gal-item:hover:after {
    opacity: 1;
}

.page-gal-item:hover>img {
    transform: scale(1.1);
}

.page-gal-item>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease 0s;
}


.gal-btn {
    border: solid 1px #00796B;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff !important;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    transition: 0.2s ease 0s;
    background: #00796B;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    white-space: nowrap;
}


.tour-form {
    border: solid 1px #e2e8f0;
    border-radius: 5px;
    padding: 15px;
    background: #fff;
}

.send-ok {
    margin: 10px 15px 10px 0px;
    padding: 10px 10px 10px 5px;
    border-radius: 5px;
    border: solid 1px #a97b2c;
    color: #1e293b;
    background: #f8fafc;
}

.send-ok-close {
    color: #aaa;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    position: absolute;
    right: 20px;
    top: 20px;
    padding: 0;
    background-color: transparent;
    border: 0;
}

.voucher-submit {
    padding: 12px 2px 12px 2px;
    font-size: 15px;
    font-weight: 700;
    background-color: #349f34;
}


.form-bolge-small {
    font-size: 12px;
    Margin-left: 12px;
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
    float: right;
    text-align: right;
    position: absolute;
    right: 15px;
}


.blog-item {
    width: 100%;
    display: block;
    position: relative;
    margin-bottom: 20px
}

.blog-item:hover>.blog-image>.title {
    padding: 16px 8px
}

.blog-item>.blog-image {
    width: 100%;
    position: relative;
    overflow: hidden
}

.blog-item>.blog-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease 0s
}

.blog-item:hover>.blog-image>img {
    transform: scale(1.1)
}

.blog-item>.blog-image>.title {
    transition: .4s ease 0s;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 12px;
    background: rgba(0, 0, 0, .5);
    color: #fff !important;
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

.blog-item>.blog-image>.title>h2 {
    display: block;
    font-size: 17px;
    line-height: 18px;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-right: 10px;
    margin: 0
}

.blog-item>.blog-image>.title>small {
    display: block;
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    white-space: nowrap
}

.blog-item>.blog-desc {
    width: 100% !important;
    padding: 10px 12px;
    color: #181a1f;
}

.blog-item>.blog-desc>p {
    display: block;
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    color: #444;
}


.blog-item.main-page {
    margin-bottom: 0;
}


.page-box {
    display: block;
    padding: 15px;
    border-radius: var(--border-radius);
    background: #fff;
    margin-bottom: var(--main-gap);
}

.page-box.gal-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.page-box.full-height {
    height: calc(100% - var(--main-gap));
}

.page-box.limit-height {
    height: 298px;
}


.car-banner {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(600/700*100%);
}

.car-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}


.car-slider-container {
    position: relative;
    display: block;
    width: 100%;
}

.lang-dropdown {
    animation: slideUpAndFade .4s cubic-bezier(.16, 1, .3, 1);
}


.lang-dropdown.show {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0;
    transform: none !important;
    animation: slideUpAndFade .4s cubic-bezier(.16, 1, .3, 1);
    right: calc(1080/1920*20%) !important;
    left: unset !important;
    top: 60px !important;
}


.list-group-item {
    border: none !important;
}

.list-group-item span {
    color: #424242;
}

.list-group-item:hover {
    background-color: #f0f2f7;
    outline: none;
}

@keyframes slideUpAndFade {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2px);
        transform: translateY(2px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.showcase-forum {
    padding: 8px;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-radius: 2px;
    border: solid 1px #e2e8f0;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
}

.search-groups {
    display: block;
    position: relative;
    width: 100%;
    background: #f0f2f7;
    height: 58px;
    border-radius: 4px;
    cursor: pointer;
    padding: 5px 13px;
    border: solid 2px transparent;
    outline: none;
}

.search-groups>input {
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #181a1f;
    padding: 0 10px;
    border: none;
    padding-left: 35px;
    background-color: transparent !important;
    min-height: 24px;
}

.search-groups>input::placeholder {
    color: #424242aa;
    font-weight: 400;
    font-size: 14px;
}


#passenger-text {
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #181a1f;
    padding: 0 10px;
    border: none;
    padding-left: 35px;
    background-color: transparent !important;
    min-height: 24px;
}

.search-groups>i {
    position: absolute;
    bottom: 13px;
    left: 14px;
    font-size: 1.4rem;
    color: #424242;
}

.search-groups>label {
    padding-left: 35px;
    width: 100%;
    font-weight: 600;
    color: #424242aa;
    margin-bottom: 0 !important;
}


.search-groups.pax {
    height: 70px;
    padding: 5px;
}

.search-groups.button-group {
    padding: 5px;
    background-color: transparent !important;
}

.button-group>button {
    width: 100%;
}

.hero-div {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-width: 320px;
    position: relative;
    width: 100%;
}

.hero-title {
    font-size: 32px;
    line-height: 2;
    font-weight: 500;
    color: #181a1f;
    margin: 10px 0;
}


.form-title {
    background-color: transparent;
    color: #181a1f;
    font-size: 20px;
    line-height: 28px;
    padding-bottom: 30px;
    text-align: left;
    width: 100%;
    z-index: 1;
    font-weight: 500;
}


h2.subtitle {
    font-size: 20px;
}


/* .socials::after {
    background-color: #181a1f;
    content: "";
    display: block;
    align-self: center;
    flex-shrink: 0;
    height: 50px;
    width: 1px;
    position: absolute;
    right: 0;
} */

/* .socials:last-child::after {
    display: none;
} */

.main-title-new {
    display: block;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: #181a1f;
    text-align: left;
    position: relative;
}

.new-route {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.new-route span {
    font-size: 16px;
    font-weight: 400;
    color: #181a1f;
    letter-spacing: 0.15px;
}

.new-route i {
    margin-left: 8px;
}

.search-groups.currency {
    height: 60px;
}

.search-groups.currency>label {
    padding-left: 0;
}

.search-groups .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #181a1f !important;
    padding-left: 0 !important;
    font-weight: 500;
}

.search-groups.currency .select2-container {
    width: 100% !important;
}


.search-groups.currency .select2-container--default .select2-selection--single {
    background-color: transparent !important;
    border: none !important;
}

.select2-container--open .select2-dropdown--below {
    /* border-top: 1px solid #aaa !important; */
    border-radius: 5px !important;
}

.select2-container--default .select2-results>.select2-results__options {
    border-radius: 5px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #f0f2f7 !important;
    color: #181a1f !important;
}

.select2-results__option {
    padding: 10px !important;
}


.my-card {
    background-color: transparent;
    border: none;
}


.blog-item.main-page>h2 {
    color: #181a1f;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
}

.blog-item.main-page>.blog-desc {
    width: 100% !important;
    padding: 10px 0;
    color: #181a1f;
}


.section-grey {
    background-color: #fbfbfd !important;
}

.br-5 {
    border-radius: 5px !important;
}

.border-bottom-1 {
    border-bottom: solid 1px #313338 !important;
}


.ftr-bottom-flex>.left,
.ftr-bottom-flex>.right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.policies {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.policies>a:last-child {
    margin-right: 0;
}

.policies>a:first-child {
    margin-left: 32px;
}

.policies>a {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #475569;
    margin-right: 32px;
    margin-bottom: 5px;
    font-weight: 400;
}

.policies>a:hover {
    text-decoration: underline !important;
    color: #1e293b !important;
}

.p-all-12 {
    padding: 12px !important;
}


.mr-20 {
    margin-right: 20px !important;
}

.swiper-pagination-bullet-active {
    background: #64666b !important;
}


.step-breadcrumb {
    padding: 16px 8px;
}

.step-breadcrumb>ul {
    display: flex;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}

.step-breadcrumb>ul>li {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.step-breadcrumb>ul>li>.step-name {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.step-breadcrumb>ul>li>.step-name>span {
    color: #64666b;
    background-color: transparent;
    padding: 2px 10px;
    border-radius: 10px;
}

.step-breadcrumb>ul>li>.step-name>span.active {
    color: #181a1f;
    background-color: #f0f2f7;
}

.step-breadcrumb>ul>li>.circle-group {
    width: 14px;
    height: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .1px;
    border-radius: 8px;
    border: 2px solid #e3e5ea;
}

.step-breadcrumb>ul>li>.circle-group.active {
    color: red;
    background-color: transparent;
    border: 2px solid #000;
    border-radius: 8px;
}

.step-breadcrumb>ul>li>.circle-group:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 6px;
    left: -6px;
    order: -1;
    width: 6px;
    height: 2px;
}

.step-breadcrumb>ul>li:not(:last-child):after {
    content: "";
    position: absolute;
    bottom: 6px;
    order: -1;
    width: calc(100% - 16px);
    height: 2px;
    background-color: #e3e5ea;
    left: calc(50% + 8px);
}


.step-route-box {
    background-color: #f0f2f7;
    border-radius: 8px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    padding: 16px;
}

.step-route-box>h2 {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.step-route-date {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    margin-top: 8px;
}

.step-route-date>.date-time {
    box-sizing: border-box;
    color: #64666b;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ppv {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 5px;
    margin-left: 5px;
}

.features-toggle-container {
    margin-top: 10px;
}

.features-toggle-btn {
    background: transparent;
    border: unset;
    color: #000;
    cursor: pointer;
    font-size: 14px;
    display: block;
    text-align: left;
    transition: all 0.3s ease;
}

.features-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.toggle-icon.rotated {
    transform: rotate(180deg);
}


.features-content {
    width: 100%;
}

.features-content .item {
    font-size: 13px;
    font-weight: 200;
    color: #525252;
}

.input-groups {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    background: #f0f2f7;
    height: 58px;
    border-radius: 4px;
    cursor: pointer;
    padding: 5px 13px;
    border: solid 2px transparent;
    outline: none;
}

.input-groups:last-child {
    margin-bottom: 0;
}

.input-groups>input {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: #181a1f;
    padding: unset;
    height: unset;
    border: none;
    background-color: transparent !important;
    min-height: 24px;
}

.input-groups>input::placeholder {
    color: #424242aa;
    font-weight: 400;
    font-size: 14px;
}

.form-group.alternate>.iti>input::placeholder {
    color: #424242aa;
    font-weight: 400;
    font-size: 14px;
}

.input-groups>i {
    position: absolute;
    bottom: 13px;
    left: 14px;
    font-size: 1.4rem;
    color: #424242;
}

.input-groups>label {
    font-weight: 600;
    color: #424242aa;
    margin-bottom: 0 !important;
}

.iti__selected-flag {
    padding: unset !important
}

.iti--separate-dial-code .iti__selected-flag {
    background: transparent !important;
}


.input-groups .select2-container {
    width: 100% !important;
}

.input-groups .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #181a1f !important;

}


.input-groups .select2-container--default .select2-selection--single {

    background-color: unset !important;
    border: none;
    border-radius: 0px;
}


.blog-card {
    width: 100%;
    background: #f0f2f7 !important;
    display: flex;
    flex-direction: column;
}


.blog-content {
    position: relative;
    padding: 16px 28px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    flex: 1 1;
    height: calc(100% - 200px);
    min-height: 200px;
}

.blog-content .category {
    text-transform: capitalize;
    color: #181a1f;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
}

.blog-content h3 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    color: #181a1f;
}

.blog-content .content {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    color: #181a1f;
    font-weight: 300;
}

.blog-content .date {
    margin-top: auto;
    padding-top: 20px;
    color: #181a1f;
    line-height: 28px;
    letter-spacing: 0;
}


.text-box {
    overflow: hidden;
}

.map-box {
    float: left;
    width: 600px;
    height: 400px;
    margin-right: 30px;
    margin-top: 20px;
}

.text-box p {
    font-size: 16px;
    line-height: 1.6;
}


html.modal-active,
body.modal-active {
    overflow: hidden;
}

#modal-container {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    z-index: 9999;
}

#modal-container.six {
    transform: scale(1);
}

#modal-container.six .modal-background {
    background: rgba(0, 0, 0, 0);
    animation: none;
}

#modal-container.six .modal-background .modall {
    background-color: #ffffff;
    animation: none;
}

#modal-container.six .modal-background .modall h2,
#modal-container.six .modal-background .modall p,
#modal-container.six .modal-background .modall button {
    opacity: 1;
    position: relative;
    animation: none;
}

#modal-container.six .modal-background .modall .modal-svg rect {
    animation: sketchIn 0.5s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six.out {
    animation: quickScaleDown 0s 0.5s linear forwards;
}

#modal-container.six.out .modal-background {
    animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six.out .modal-background .modall {
    animation: modalFadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six.out .modal-background .modall h2,
#modal-container.six.out .modal-background .modall p,
#modal-container.six.out .modal-background .modall button {
    animation: modalContentFadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six.out .modal-background .modall .modal-svg rect {
    animation: sketchOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}


#modal-container .modal-background {
    display: table-cell;
    background: rgba(0, 0, 0, .8);
    text-align: center;
    vertical-align: middle;
}

#modal-container .modal-background .modall {
    background: white;
    padding: 50px;
    display: inline-block;
    border-radius: 3px;
    font-weight: 300;
    position: relative;
}

#modal-container .modal-background .modall h2 {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 15px;
    color: #222222 !important;
}

#modal-container .modal-background .modall p {
    font-size: 18px;
    line-height: 22px;
    color: #333333 !important;
}

#modal-container .modal-background .modall button {
    color: #222222 !important;
    background: #f5f5f5;
    border: 1px solid #ccc;
    padding: 8px 24px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 16px;
    font-size: 15px;
}

#modal-container .modal-background .modall .modal-svg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 3px;
}

#modal-container .modal-background .modall .modal-svg rect {
    stroke: #fff;
    stroke-width: 2px;
    stroke-dasharray: 778;
    stroke-dashoffset: 778;
}


.paxs.show {
    width: 165px;
    padding: 5px 0;
}

/* Yolcu dropdown her zaman aşağı açılsın */
.hsf-field--sm .dropdown-menu {
    top: calc(100% + 8px) !important;
    bottom: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 9999 !important;
    min-width: 180px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 1px solid #e0e0e0;
}


.index-gall {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3/4*100%);
    background: #fff;
    border-radius: 10px;
}

.index-gall>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.blog-img {
    position: relative;
    display: block;
    width: 100%;
}

.blog-img>div {
    position: relative;
    overflow: hidden;
    padding-top: calc(2 / 4 * 100%);
}

.blog-img>div>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.blog-container {
    padding: 0;
    border-radius: 5px;
    overflow: hidden;
}

.blog-details {
    position: relative;
    bottom: 20px;
    display: flex;
    justify-content: center;
}

.blog-desc {
    width: 90%;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}

.blog-desc h4 {
    color: #000;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    font-size: 20px;
    font-weight: 600;
}

.blog-p {
    color: #222222d6;
    font-size: 13px;
    font-weight: 500;
}
/* ================================================
   RESERVATION FLOW MODERN STYLES
   ================================================ */

/* Progress Breadcrumb */
.step-progress {
    padding: 40px 0 30px;
    background: white;
}

.step-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.step-breadcrumb ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.step-breadcrumb li {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-breadcrumb li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: rgba(71, 94, 138, 0.2);
    z-index: 0;
}

.step-breadcrumb li.active:not(:last-child)::after {
    background: var(--brand-gold);
}

.step-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--soft-text-color);
    margin-bottom: 10px;
    text-align: center;
}

.step-name.active,
.step-name span.active {
    color: var(--brand-primary);
}

.circle-group {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(71, 94, 138, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--soft-text-color);
    position: relative;
    z-index: 1;
}

.circle-group.active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(71, 94, 138, 0.3);
}

/* Route Box */
.step-route-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(71, 94, 138, 0.08);
    margin-bottom: 30px;
}

.step-route-box h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-route-box i {
    color: var(--brand-gold);
    font-size: 20px;
}

.step-route-date {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    color: var(--soft-text-color);
}

.date-time {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Car Selection */
.car-selection {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    border: 2px solid rgba(71, 94, 138, 0.1);
    transition: all 0.3s ease;
}

.car-selection:hover {
    border-color: var(--brand-gold);
    box-shadow: 0 8px 30px rgba(71, 94, 138, 0.1);
    transform: translateY(-2px);
}

.car-image-container {
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
}

.car-slider-container {
    aspect-ratio: 4/3;
    position: relative;
}

.car-image {
    width: 100%;
    height: 100%;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 15px;
}

.csg {
    color: var(--soft-text-color);
    font-weight: 500;
}

.cl-rate {
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.price-box .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-primary);
}

.main-btn-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #3a4d6f 100%);
    color: white;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
}

.main-btn-2:hover {
    background: linear-gradient(135deg, #3a4d6f 0%, var(--brand-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(71, 94, 138, 0.4);
    color: white;
}

.features-toggle-container {
    margin-top: 15px;
}

.features-toggle-btn {
    width: 100%;
    padding: 12px;
    background: rgba(71, 94, 138, 0.06);
    border: 1px solid rgba(71, 94, 138, 0.1);
    border-radius: 10px;
    color: var(--brand-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.features-toggle-btn:hover {
    background: rgba(71, 94, 138, 0.1);
}

.features-content {
    padding: 15px 0 0;
}

.features-content .item {
    font-size: 14px;
    color: var(--soft-text-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.features-content .item i {
    color: var(--brand-gold-dark);
}

/* Checkout Box */
.checkout-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(71, 94, 138, 0.08);
}

.checkout-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(71, 94, 138, 0.1);
}

.checkout-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--main-text-color);
    margin-bottom: 8px;
    display: block;
}

.checkout-input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1.5px solid rgba(71, 94, 138, 0.2);
    border-radius: 10px;
    font-size: 15px;
    color: var(--main-text-color);
    transition: all 0.3s ease;
    background: white;
}

.checkout-input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(71, 94, 138, 0.1);
}

.input-groups {
    margin-bottom: 20px;
}

/* Step2 input-groups height fix (override base 58px) */
.reservation-step-2 .input-groups {
    height: auto !important;
    min-height: 56px;
}

/* Summary Sidebar */
.summary-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(71, 94, 138, 0.08);
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(71, 94, 138, 0.1);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
}

.summary-item-label {
    color: var(--soft-text-color);
    font-weight: 500;
}

.summary-item-value {
    color: var(--main-text-color);
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0;
    margin-top: 15px;
    border-top: 2px solid rgba(71, 94, 138, 0.1);
}

.summary-total-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-primary);
}

.summary-total-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-primary);
}

/* Confirmation Page */
.rez-complete-box {
    background: white;
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(71, 94, 138, 0.08);
    margin-bottom: 30px;
}

.rez-complete-box .head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.rez-complete-box i {
    font-size: 80px;
    color: #28a745;
}

.rez-complete-box .message {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-primary);
}

.rez-complete-info {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 30px;
    margin-bottom: 30px;
}

.rez-complete-info .form-note {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    display: block;
    margin-bottom: 25px;
}

.rez-number-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rez-number-box span:first-child {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.rez-number-box span:last-child {
    font-size: 32px;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 991px) {
    .step-route-box {
        padding: 20px;
    }

    .step-route-box h2 {
        font-size: 20px;
        flex-direction: column;
        gap: 10px;
    }

    .car-selection {
        padding: 20px;
    }

    .checkout-box,
    .summary-box {
        padding: 20px;
    }

    .summary-box {
        position: static;
    }
}

@media (max-width: 576px) {
    .step-breadcrumb li {
        font-size: 12px;
    }

    .circle-group {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .step-route-box h2 {
        font-size: 18px;
    }

    .car-name {
        font-size: 18px;
    }

    .price-box .price {
        font-size: 24px;
    }

    .rez-complete-box .message {
        font-size: 22px;
    }

    .rez-number-box span:last-child {
        font-size: 24px;
    }
}

/* ================================================
   CONTENT PAGES MODERN STYLES
   ================================================ */

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #3a4d6f 100%);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Hero sections with background-image: enforce gorsel_ayar aspect ratio */
.page-header.blog-hero {
    aspect-ratio: var(--hero-ratio-blog, 16 / 9);
    min-height: 220px;
    display: flex;
    align-items: center;
}
.page-header.service-hero {
    aspect-ratio: var(--hero-ratio-hizmet, 16 / 9);
    min-height: 220px;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
    color: white;
}

.page-breadcrumb span {
    color: var(--brand-gold);
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 0 0 20px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Destinations Grid */
.destinations-grid {
    padding: 80px 0;
    background: white;
}

.destination-grid-item {
    margin-bottom: 30px;
}

/* Blog Grid */
.blog-grid {
    padding: 80px 0;
    background: white;
}

.blog-grid-item {
    margin-bottom: 30px;
}

.blog-detail-container {
    padding: 80px 0;
    background: white;
}

.blog-detail-header {
    margin-bottom: 40px;
}

.blog-detail-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1.3;
    margin: 0 0 20px;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    color: var(--soft-text-color);
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
}

.blog-detail-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--main-text-color);
}

.blog-detail-content h2,
.blog-detail-content h3 {
    color: var(--brand-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-detail-content p {
    margin-bottom: 20px;
}

/* Services Page */
.services-grid {
    padding: 80px 0;
    background: white;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 2px solid rgba(71, 94, 138, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 30px;
}

.service-card:hover {
    border-color: var(--brand-gold);
    box-shadow: 0 8px 30px rgba(71, 94, 138, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #3a4d6f 100%);
    border-radius: 50%;
    color: white;
    font-size: 36px;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: var(--soft-text-color);
    line-height: 1.6;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(71, 94, 138, 0.08);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(71, 94, 138, 0.1);
    border-radius: 12px;
    color: var(--brand-primary);
    font-size: 24px;
}

.contact-info-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0 0 8px;
}

.contact-info-content p {
    font-size: 15px;
    color: var(--soft-text-color);
    margin: 0;
}

.contact-form-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(71, 94, 138, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--main-text-color);
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 0 16px;
    height: 48px;
    border: 1.5px solid rgba(71, 94, 138, 0.2);
    border-radius: 10px;
    font-size: 15px;
    color: var(--main-text-color);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(71, 94, 138, 0.1);
    outline: none;
}

textarea.form-control {
    height: 150px;
    padding: 12px 16px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #3a4d6f 100%);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #3a4d6f 0%, var(--brand-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(71, 94, 138, 0.4);
}

/* Gallery Page */
.gallery-grid {
    padding: 80px 0;
    background: white;
}

.gallery-grid-item {
    margin-bottom: 30px;
}

/* Tours */
.tour-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(71, 94, 138, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 30px;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(71, 94, 138, 0.15);
}

.tour-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--brand-gold);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.tour-content {
    padding: 30px;
}

.tour-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0 0 15px;
}

.tour-description {
    font-size: 15px;
    color: var(--soft-text-color);
    line-height: 1.6;
    margin: 0 0 20px;
}

.tour-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(71, 94, 138, 0.1);
}

.tour-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--soft-text-color);
}

.tour-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-primary);
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(71, 94, 138, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(71, 94, 138, 0.04);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--soft-text-color);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Content Pages */
@media (max-width: 991px) {
    .page-header {
        padding: 100px 0 60px;
    }
    .page-header.blog-hero,
    .page-header.service-hero {
        min-height: 180px;
    }

    .page-title {
        font-size: 36px;
    }

    .blog-detail-title {
        font-size: 32px;
    }

    .destinations-grid,
    .blog-grid,
    .services-grid,
    .contact-section,
    .gallery-grid,
    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .blog-detail-title {
        font-size: 26px;
    }

    .service-card,
    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }
}
