
a {
    text-decoration: none;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
a:hover {
    text-decoration: none; }

.acme-news-ticker {
    position: relative;
    height: 25px; }
@media (min-width: 768px) {
    .acme-news-ticker {
        margin-top: 0; } }
.acme-news-ticker-label {
    background: #1974d2;
    padding: 10px;
    width: auto;
    float: left;
    margin-right: 15px;
    line-height: normal;
    height: 100%;
    color: #fff; }
@media (max-width: 575px) {
    .acme-news-ticker-label {
        position: absolute;
        top: -45px; } }
.acme-news-ticker-box {
    height: 100%;
    overflow: hidden; }
@media (max-width: 575px) {
    .acme-news-ticker-box {
        padding-left: 10px;
        padding-right: 10px;
    }
}
.acme-news-ticker-box ul {
    width: 100%;
    list-style-type: none !important;
    padding: 0;
    margin: 0; }
.acme-news-ticker-box ul li a {
    text-decoration: none;
    font-size: 16px;
}
.acme-news-ticker-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    pointer-events: painted;
}
.acme-news-ticker-controls span {
    height: 100%;
    padding: 0;
    width: 40px;
    border-color: #eeeeee;
    border-style: solid;
    border-width: 0 0 0 1px;
    cursor: pointer;
    display: inline-block; }
.acme-news-ticker-controls span:hover {
    background: #eeeeee; }
.acme-news-ticker-controls span.acme-news-ticker-arrow {
    margin: 0;
    display: inline-block;
    position: relative; }
.acme-news-ticker-controls span.acme-news-ticker-arrow:after {
    border-color: #999;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-right-style: solid;
    border-right-width: 2px;
    content: '';
    display: inline-block;
    height: 8px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 8px; }
.acme-news-ticker-controls span.acme-news-ticker-pause {
    position: relative;
    display: inline-block; }
.acme-news-ticker-controls span.acme-news-ticker-pause.play:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-color: #999;
    border-style: solid;
    border-width: 0 2px 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}
.acme-news-ticker-controls span.acme-news-ticker-pause.stop:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid #999;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    -webkit-transform: translate(-20%, -45%) rotate(0deg);
    -ms-transform: translate(-20%, -45%) rotate(0deg);
    transform: translate(-20%, -45%) rotate(0deg);
    left: 50%;
    top: 45%;
}
.acme-news-ticker-controls.acme-news-ticker-horizontal-controls span.acme-news-ticker-prev:after {
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    -ms-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg); }
.acme-news-ticker-controls.acme-news-ticker-horizontal-controls span.acme-news-ticker-next:after {
    -webkit-transform: translate(-50%, -50%) rotate(315deg);
    -ms-transform: translate(-50%, -50%) rotate(315deg);
    transform: translate(-50%, -50%) rotate(315deg); }
.acme-news-ticker-controls.acme-news-ticker-vertical-controls span.acme-news-ticker-prev:after {
    -webkit-transform: translate(-50%, -50%) rotate(225deg);
    -ms-transform: translate(-50%, -50%) rotate(225deg);
    transform: translate(-50%, -50%) rotate(225deg); }
.acme-news-ticker-controls.acme-news-ticker-vertical-controls span.acme-news-ticker-next:after {
    -webkit-transform: translate(-50%, -50%) rotate(405deg);
    -ms-transform: translate(-50%, -50%) rotate(405deg);
    transform: translate(-50%, -50%) rotate(405deg); }





.notice-bar {
    width: 100%;
}
.notification-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification {
    font-size: 20px;
    opacity: 0;
    margin-right: auto;
}

.notification.slide-in {
    animation: slideIn 0.5s forwards;
}

.notification.slide-out {
    animation: slideOut 0.5s forwards;
}

@keyframes slideIn {
    0% {
        opacity: 0; /* Başlangıçta görünmez */
        transform: translateY(-20px); /* Yukarıdan gelir */
    }
    100% {
        opacity: 1; /* Tamamen görünür */
        transform: translateY(0); /* Orta noktada durur */
    }
}

@keyframes slideOut {
    0% {
        opacity: 1; /* Tamamen görünür */
        transform: translateY(0); /* Orta noktada durur */
    }
    100% {
        opacity: 0; /* Sonunda tekrar görünmez */
        transform: translateY(20px); /* Aşağıdan kaybolur */
    }
}

.nav-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}




.container-topbar {
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

.container-topbar.hidden {
    opacity: 0; /* Görünmez olacak */
}

.hidden {
    opacity: 0;
    display: none;
}
#notice-close {
    cursor: pointer;
}
.container-topbar, .container-below-top {
    background: #F3F3F3;
    padding: 3px 0;
}
.topbar-inner {
    color: #000;
    width: 100%;
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 1em;
}
.importantText {
    font-size: 20px;
    font-weight: 700;
}
.mod-articlesnews-vertical.newsflash-vert.mod-list {
    margin: 0;
    padding: 0;
}
.newsflash-title {
    padding: 0;
    margin: 0;
}
.newsflash-title a {
    font-size: 20px;
    font-weight: 400;
}
.newsflash-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.about-container-min-h
{
    min-height: 500px;
}

.form-label {
    margin-bottom: 0.5rem !important;
    font-size: 12px !important;
}
.form-control {
    max-width: 100% !important;
    background-color: hsl(0, 0%, 100%) !important;
    border: none !important;
    line-height: 25px !important;
}
.input-group-text {
    font-size: 16px !important;
    text-align: left !important;
    padding: 10px !important;
}
.terms-text {
    font-size: 12px !important;
    position: absolute !important;
    bottom: 15px !important;
}
.terms-text a{
    color: var(--cassiopeia-color-primary);
}
#custom-banner p {
    margin: 0;
}
.btn-close.video-close {
    right: -53px;
    background-color: white;
    color: black;
    z-index: 9999;
    padding: 10px;
    top: 0;
}
.video-frame {
    background-color: #000 !important;
    padding: 20px 70px;
}
.grioffer {
    background: #F3F3F3;
    height: 120px;
    color: black;
}
.gri-overlay {
    padding: 30px 30px;
}
.gri-overlay > p {
    font-size: 20px;
    font-weight: 400;
    padding: 0;
    margin: 0;
}
.moduletable.recommended {
    position: relative;
    overflow: hidden;
    margin-right: 0;
    margin-bottom: 30px;
}
.recommended > h3 {
    font-size: clamp(30px, 4vw, 44px) !important;
    font-weight: 600 !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    color: var(--hititcs-color-primary);
}
.icon-container {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 30px;
}

.icon-container svg {
    position: absolute;
    top: 0;
    left: 9px;
    transition: opacity 0.5s ease;
}

.icon-container .default {
    opacity: 1;
}

.icon-container .hover {
    opacity: 0;
}

.icon-container:hover .default {
    opacity: 0;
}

.icon-container:hover .hover {
    opacity: 1;
}
.osmap-item-url {
    color: var(--hcs-color-secondary);
    font-weight: 700;
}
.osmap-item-separator {
    color: var(--hcs-color-secondary);
    font-weight: 700;
}


.airport-left {
    width: 100%;
    padding: 35px 0;
    align-content: center;
}
.airport-right {
    background: #F3F3F3;
    padding: 25px;
    width: 50%;
    font-size: 16px;
    font-weight: 400;
    align-content: center;
}
.airport-right > h2 {
    font-size: 34px !important;
    font-weight: 500 !important;
    margin-bottom: 30px;
}
.airport-image {
    width: 100%;
}
#map {
    margin: 0;
    height: 420px;
    z-index: 0;
}

/* DivOverlay için özel stil */
.custom-overlay {
    width: 300px;
}
.custom-overlay > a {
    text-decoration: none;
}
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
    background: white;
    color: #333;
    box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}
.leaflet-popup-content {
    margin: 0;
    line-height: inherit;
    font-size: unset;
    /* min-height: 1px; */
}
.leaflet-popup-content-wrapper {
    padding: 0;
    text-align: left;
    border-radius: 3px;
}
.leaflet-popup-content p {
    margin: 0 !important;
}
.map-image > img {
    width: auto;
    height: 95px;
}
.map-price {
    font-size: 16px !important;
    font-weight: 400;
    color: #112211;
    align-content: center;
    align-items: center;
    align-self: center;
    display: flex;
    justify-content: center;
    text-wrap: nowrap;
}
.leaflet-control-attribution.leaflet-control {
    display: none;
}
.Center-header {
    position: relative;
    height: 100%;
}

/* Main Title/Subtitle Area */
.banner-bottom-left {
    position: absolute;
    bottom: clamp(15%, 20%, 25%);
    left: clamp(8%, 10%, 12%);
    color: white;
    max-width: 80%; 
    z-index: 2;
}

.banner-left-title {
    font-size: clamp(32px, 6vw, 72px); 
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    padding: 0;
    line-height: 1.1;
    color: white;
}

.banner-left-subtitle {
    font-size: clamp(16px, 2.5vw, 32px); 
    font-weight: 400;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    color: white;
    max-width: 90%;
}

/* Responsive fix for title/subtitle positioning on mobile */
@media (max-width: 575px) {
    .banner-bottom-left {
        top: 60% !important;
        bottom: auto !important;
        transform: translateY(-50%);
    }
}
@media all and (max-width: 950px) {
    .airport-left {
        width: 100%;
        padding: 0;
    }
    .airport-right {
        background: #F3F3F3;
        padding: 50px;
        width: 95%;
        margin-top: -15px;
        margin-left: auto;
        margin-right: auto;
    }
    .moduletable.recommended {
        position: relative;
        overflow: hidden;
        margin-right: -15px;
        margin-bottom: 30px;
    }
}
@media (max-width: 640px) {
    #map {
        margin: -15px;
    }
    .map-image > img {
        width: 100%;
        height: auto;
    }
    .map-price {
        text-align: center;
        height: 90px;
    }
    .custom-overlay {
        width: 250px;
    }
    .custom-overlay > a > div {
        flex-direction: column;
    }
    .custom-overlay > div {
        flex-direction: column;
    }
}
.top-b .mod-custom h3 span {
    line-height: 1.2!important;
  }
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 999;
    text-decoration: none;
    font-weight: bold;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

button:focus,
a:focus,
input:focus {
    outline: 2px solid #005fcc; 
    outline-offset: 2px;
}
.loader {
    width: 25px;
    height: 25px;
    border: 3px solid #ccc;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    margin-left: 10px;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Fix IBE form positioning and styling in top-a (destination pages) */
.container-top-a {
    background: transparent !important;
}

.container-top-a .ibe-responsive {
    position: relative !important;
    top: -80px !important;
    left: 0 !important;
    transform: none !important;
    max-width: 1180px !important;
    width: 95% !important;
    height: auto !important;
    margin: 0 auto !important;
    z-index: 9 !important;
}

.container-top-a #ibe-include {
    border: none !important;
    border-radius: 5px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    padding: 8px 20px 5px 20px !important;
    min-height: 140px !important;
}

/* Fix double icon in search button */
.container-top-a .searchFlightButton img {
    display: none !important;
}

/* Fix swap button position jump on page load */
.container-top-a .swapBtn {
    left: calc(31% - 18px) !important;
}

/* Responsive: IBE form positioning adjustments */
@media (max-width: 1200px) {
    .container-top-a .ibe-responsive {
        top: -60px !important;
    }
}

@media (max-width: 950px) {
    .container-top-a .ibe-responsive {
        top: -40px !important;
        width: 92% !important;
    }
}

@media (max-width: 768px) {
    .container-top-a .ibe-responsive {
        top: -20px !important;
        width: 95% !important;
    }
    
    .container-top-a #ibe-include {
        padding: 8px 15px 5px 15px !important;
    }
}

@media (max-width: 480px) {
    .container-top-a .ibe-responsive {
        top: 0 !important;
        width: 98% !important;
    }
}

/* Benefit Section */
.benefit-section {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 4rem 0 5rem 0;
    max-width: 100%;
}

.benefit-image {
    flex: 0 0 calc(60% - 1.2rem);
    max-width: calc(60% - 1.2rem);
    min-width: 0;
}

.benefit-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

.benefit-content {
    flex: 0 0 calc(40% - 0.8rem);
    max-width: calc(40% - 0.8rem);
    min-width: 0;
}

.benefit-content p.p1 {
    padding-left: 2.4em;
    text-indent: -2.4em;
}

/* Tablet-Mobile */
@media (max-width: 1024px) {
    .benefit-section {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin: 3rem 0 4rem 0;
    }
    
    .benefit-image {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }
    
    .benefit-content {
        flex: 0 0 auto;
        max-width: min(800px, 100%);
        width: fit-content;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .benefit-section {
        margin: 2rem 0 3rem 0;
        gap: 1rem;
    }
}

/* Circle Banner Section  */
.circle-banner-section {
    position: relative;
    padding: 4rem 0;
    margin: 0 0 5rem 0;
}

/* When sidebar-left is active on desktop, start from container left edge and extend right to viewport edge */
@media (min-width: 992px) {
    .has-sidebar-left .circle-banner-section::before {
        left: 0;
        right: -50vw;
    }
}

.circle-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -50vw;
    right: -50vw;
    background-color: rgb(3, 52, 34);
    z-index: 0;
}

.circle-banner-container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.circle-banner-main-title {
    color: #fff;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    margin: 0 0 3rem 0;
    text-align: left;
}

.circle-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    counter-reset: circle-banner-counter;
}

.circle-banner-item {
    counter-increment: circle-banner-counter;
    position: relative;
}

.circle-banner-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.circle-banner-header::before {
    content: counter(circle-banner-counter);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.circle-banner-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.circle-banner-content {
    color: #fff;
}

.circle-banner-content h3,
.circle-banner-content h4,
.circle-banner-content strong {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.circle-banner-content p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .circle-banner-section {
        padding: 3rem 0;
        margin: 0 0 4rem 0;
    }

    .circle-banner-grid {
        gap: 2rem;
    }
}

/* Tablet - 768px and below - Stack to 1 column */
@media (max-width: 768px) {
    .circle-banner-section {
        padding: 2.5rem 0;
        margin-bottom: 3rem;
    }
    
    .circle-banner-container {
        padding: 0 1rem;
    }
    
    .circle-banner-main-title {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .circle-banner-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .circle-banner-item {
        text-align: center;
    }
    
    .circle-banner-header {
        justify-content: center;
    }
}




