@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
@import url("../../../webfonts/NotoSans_Regular/stylesheet.css");
@import url("../../../webfonts/Catamaran_Regular/stylesheet.css");
@import url("../../../webfonts/ArchitectsDaughter/stylesheet.css");
@import url("../../../webfonts/OpenSans_Regular/stylesheet.css");
@import url("../../../webfonts/AnticSlab_Regular/stylesheet.css");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "NotoSans Regular", Tahoma, Geneva, sans-serif;
    background-color: #F7F9FC;
    color: #333;
}

a {
    color: #333;
    text-decoration: none;
}

#tek {
    margin-top: 115px;
}

.margin {
    width: 98%;
    max-width: 1200px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    padding: 2%;
}

/* Breadcrumb */



.breadcrumb {
    padding: 10px 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #4CAF50;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #333;
}

/* ===== GALLERY ===== */



.gallery {
    max-width: 100%;
    margin: 0 auto 20px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 12px;
    background: #f0f0f0;
}

.main-image picture, .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.main-image img {
    background: #eee url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ddd"/><text x="50" y="50" font-size="12" text-anchor="middle" dy=".3em" fill="%23999">Loading...</text></svg>') center/cover no-repeat;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: background 0.3s;
}

.nav-button:hover {
    background: #4CAF50;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.rating {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: gold;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 18px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnails picture, .thumbnails img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.thumbnails picture.active, .thumbnails img.active, .thumbnails picture:hover, .thumbnails img:hover {
    opacity: 1;
    border-color: #4CAF50;
    transform: scale(1.1);
}

/* Tour Details */
/*.title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #222;
    margin: 20px 0;
    text-align: center;
}
*/



/* ===== ANA TUR FİYAT GÖSTERİMİ - MODERN & ÇEKİCİ VERSİYON ===== */
.tour-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-info:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

/* Price Wrapper - Ana konteyner */
.tour-info .price-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    font-family: "Poppins", sans-serif;
}

.tour-info .old-price-part {
    color: #6b7280;
    font-size: 1.15rem;
    font-weight: 500;
}

.tour-info .old-price {
    text-decoration: line-through;
    color: #9ca3af;
    margin-left: 4px;
    font-weight: 400;
}

.tour-info .new-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: -0.8px;
    line-height: 1;
    position: relative;
}

.tour-info .new-price::before {
    content: "€";
    font-size: 1.6rem;
    vertical-align: top;
    margin-right: 2px;
    color: #4CAF50;
}

.tour-info .new-price::after {
    content: attr(data-per-person);
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: #6b7280;
    margin-top: 4px;
}

.tour-info .discount-badge {
    background: #dc2626;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.25);
    transform: translateY(-4px);
}

/* Price on request alternatifi */
.tour-info .price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4b5563;
    background: #f3f4f6;
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px dashed #9ca3af;
}
/* Root ve Duration - daha uyumlu hale getirme */
.tour-info .root,
.tour-info .dur {
	font-size: 1.05rem;
	padding: 4px 5px;
	background: rgba(76, 175, 80, 0.05);
	border-radius: 10px;
	border-left: 5px solid #4CAF50;
}

.tour-info .rtit,
.tour-info .dtit {
    color: #2f855a;
    font-weight: 700;
    margin-right: 10px;
}






.rroot, .daynight {
    color: #555;
}

.book-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #4CAF50;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    margin: 20px auto;
    transition: background 0.3s;
}

.book-now:hover {
    background: #45a049;
}

.telegram-btn {
    background: #0088cc;
}

.telegram-btn:hover {
    background: #006699;
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

/* Mobilde Gallery */
@media (max-width: 768px) {

.main-image {
    aspect-ratio: 1 / 1;
}

.thumbnails picture, .thumbnails img {
    width: 80px;
    height: 80px;
}

.nav-button {
    width: 40px;
    height: 40px;
    font-size: 20px;
}


.tour-info .new-price {
        font-size: 2rem;
        padding: 8px 14px;
        min-width: 120px;
    }
    
    .tour-info .discount-badge {
        font-size: 0.95rem;
        padding: 5px 12px;
        top: -10px;
        right: 15px;
    }
    
    .tour-info .price-wrapper {
        padding: 14px 16px;
    }
}
 @media (max-width: 480px) {

.thumbnails picture, .thumbnails img {
    width: 70px;
    height: 70px;
}
}

/* ===== RELATED TOURS - TOURS.PHP İLE TAM AYNI ===== */
 



#related-tours .head {
    background: #4CAF50;
    color: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 600;
}

#related-tours {
    margin-top: 20px;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2%;
    width: 100%;
}

/* Kart */



#related-tours .tour {
    position: relative;
    height: 410px;
    flex: 1 1 320px;
    max-width: 340px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

#related-tours .tour:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

/* Resim */



#related-tours .tour .titleup {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

#related-tours .tour .titleup picture, #related-tours .tour .titleup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Root Overlay */



#related-tours .tour .root {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(20, 121, 188, 0.9);
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    width: 85%;
    text-align: center;
    font-weight: bold;
    z-index: 10;
}

#related-tours .tour:hover .root {
    opacity: 1;
    visibility: visible;
}

/* Days Badge */



#related-tours .tour .titleup .days {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
    z-index: 3;
}

/* İçerik */
/* Alt Bilgi */



#related-tours .tour .titledown {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

#related-tours .tour .titledown .dur {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

#related-tours .tour .titledown .title {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    flex-grow: 1; /* Başlık alanı büyüsün */
    margin-bottom: 25px;
}

/* ===== İNDİRİM FİYAT - SAĞ ALTTA SABİT ===== */



#related-tours .tour .price-wrapper {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    z-index: 5;
}

#related-tours .tour .old-price-part {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #aaa;
    font-size: 13px;
}

#related-tours .tour .old-price {
    text-decoration: line-through;
    font-weight: normal;
}

#related-tours .tour .new-price {
    background: #4CAF50;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
}

#related-tours .tour .new-price::after {
    content: attr(data-per-person);
    display: block;
    font-size: 10px;
    font-weight: normal;
    margin-top: 2px;
    opacity: 0.9;
}

#related-tours .tour .discount-badge {
    position: absolute;
    top: -10px;
    right: 0;
    transform: translateY(-50%);
    background: #E91E63;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
    z-index: 6;
}

/* Price on request */



#related-tours .tour .price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #FBCEDE;
    color: #4A4A4A;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    z-index: 5;
}

/* Mobilde */
@media (max-width: 768px) {

#related-tours .tour {
    height: 390px;
    max-width: 250px;
}
}


/* Mobilde ayar */
@media (max-width: 480px) {

#related-tours .tour {
    height: 390px;
    padding-bottom: 35px;
    max-width: 320px;
}

#related-tours .tour .price-wrapper {
    bottom: 12px;
    right: 12px;
}

#related-tours .tour .new-price {
    font-size: 15px;
    padding: 4px 8px;
}

#related-tours .tour .discount-badge {
    font-size: 11px;
    padding: 3px 8px;
    top: -8px;
}
}

/* Diğer stiller (korundu) */



.ssssss {
    color: rgba(255,255,0,1);
    position: fixed;
    top: 467px;
    right: 22px;
    height: 40px;
    width: 60px;
    text-align: justify;
    vertical-align: middle;
}

#down {
    margin-top: 10px;
}

#down h1 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 5px;
}

#down .highcol {
    background-color: #777777;
}

#down .iticol {
    background-color: #2E89B6;
}

#down .bookf {
    background-color: #246A8C;
}

#down h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 5px;
    background-color: #66CCCC;
}
h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 5px;
    background-color: #6699CC;
}




.greenh2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 5px;
    background-color: #4CAF50;
}
#down h3, #down h4, #down h5 {
    font-size: 1.1rem;
    font-weight: 300;
    color: #fff;
    padding: 3px;
    border-radius: 8px;
    margin-bottom: 2px;
    background-color: #5B5B5B;
}

#down p, #down b, #down span {
    margin-top: 10px;
}

.high span, .high li {
    list-style-type: square;
    margin-left: 20px;
    padding-left: 10px;
}

.high, .loc, .cat, .pr, .gmap, .iti, .fac1 {
    margin-bottom: 20px;
}

.iti p, .fac1 p {
    margin-bottom: 20px;
    text-indent: 30px;
}

.iti li {
    list-style-type: square;
    margin-left: 40px;
    padding-left: 10px;
}

.tit {
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.tit1, .loc p, .cat p {
    color: #555;
    line-height: 1.6;
}

.info-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.loc, .cat {
    flex: 1;
    background: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pr {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ad, .ch, .bb {
    flex: 1;
    background: #4CAF50;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.ad:hover, .ch:hover, .bb:hover {
    transform: translateY(-5px);
}

.gmap {
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gmap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.fac1 .bt1 {
    background: #4CAF50;
    color: #fff;
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.tit .tit1 li {
    list-style-type: disc;
    margin-left: 20px;
    color: #333;
    line-height: 1.8;
}

.fac1 .wc1, .fac1 .inc {
    padding: 0 20px;
}

.fac1 .inc li {
    list-style-type: circle;
    margin-left: 20px;
    color: #333;
    line-height: 1.8;
}

.fac1 .wc1 p {
    text-indent: 0;
}

.fac1 .wc1 li {
    list-style-type: none;
    margin-left: 20px;
    color: #333;
    line-height: 1.8;
}

.social-share {
    margin-bottom: 30px;
    text-align: center;
}

.social-icon {
    display: inline-block;
    margin: 0 10px;
    font-size: 20px;
    color: #4CAF50;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #45a049;
}

/* Form ve diğer stiller (korundu) */



:root {
 --primary:#007bff;
 --primary-dark:#0056b3;
 --danger:#dc3545;
 --gray:#6c757d;
 --light:#f8f9fa;
 --border:#ced4da;
 --bg:#fff;
 --shadow:0 8px 25px rgba(0,0,0,.08);
}

.reservform {
    background: var(--bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.reservform .tit {
    font-size: 24px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

.reservform .form-group {
    margin-bottom: 18px;
}

.reservform .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--gray);
    font-size: 15px;
}

.reservform input[type=text], .reservform input[type=email], .reservform input[type=tel], .reservform textarea, .reservform select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 16px;
}

.reservform input:focus, .reservform select:focus, .reservform textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,123,255,.15);
}

.reservform textarea {
    resize: vertical;
    min-height: 110px;
}

.reservform .row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.reservform .row .form-group {
    flex: 1;
    min-width: 200px;
}

.reservform .submit-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s;
}

.reservform .submit-btn:hover {
    background: var(--primary-dark);
}

.reservform .pricing-categories .category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.reservform .counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reservform .counter button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--primary);
    background: #fff;
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
}

.reservform .counter span {
    width: 24px;
    text-align: center;
    font-weight: 600;
}

.reservform .form-error {
    color: var(--danger);
    font-size: 14px;
    margin: 8px 0;
}

.reservform .price-summary {
    margin: 12px 0;
    font-weight: 600;
}
 @media(max-width:768px) {

.reservform .sticky-submit {
    position: sticky;
    bottom: 0;
    width: 100%;
    padding: 14px;
    z-index: 10;
}
}

/* Calendar ve diğer stiller korundu */



.reservform .calendar-popup {
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 100;
    max-width: 300px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
}

.reservform .calendar-popup.open {
    opacity: 1;
    transform: translateY(0);
}

.reservform .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.reservform .month-select {
    margin: 0 5px;
}

.reservform .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 5px;
    font-weight: bold;
}

.reservform .calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 5px;
}

.reservform .calendar-date {
    padding: 6px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.reservform .calendar-date:hover {
    background: var(--primary);
    color: #fff;
}

.reservform .calendar-date.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.reservform .calendar-dates .calendar-date.weekend {
    background: #f0f8ff;
}

.reservform .calendar-date.selected {
    background: var(--primary);
    color: #fff;
}

.reservform .calendar-header button {
    background-color: #1d4ed8;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0 5px;
}

.reservform .calendar-header button:hover {
    background-color: #2563eb;
    transform: scale(1.1);
}

/* Genel Responsive */
@media (max-width: 768px) {

.title {
    font-size: 1.8rem;
    font-weight: bold;
}

.loc, .cat, .ad, .ch, .bb {
    flex: 1 1 100%;
}
}
/* ====================== THUMBNAILS İYİLEŞTİRMELERİ ====================== */

/* ====================== THUMBNAILS - İYİLEŞTİRİLMİŞ ====================== */
.thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 15px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.thumbnails::-webkit-scrollbar {
    display: none;
}

.thumbnails img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.75;
}

.thumbnails img:hover {
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.thumbnails img.active {
    opacity: 1;
    border-color: #4CAF50;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.4);
    transform: scale(1.05);
}

/* Mobilde biraz daha küçük */
@media (max-width: 768px) {
    .thumbnails img {
        width: 90px;
        height: 90px;
    }
    .thumbnails {
        gap: 10px;
        padding: 12px 0;
    }
}


27-03

/* ====================== TOUR FEATURES ====================== */
/* ====================== TOUR FEATURES - KOMPAKT VERSİYON ====================== */
/* ====================== TOUR ADVANCED FEATURES - KOMPAKT ====================== */
.tour-features {
    margin: 25px 0 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.feature-box {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 4px;
	padding: 4px 4px;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	/* [disabled]vertical-align: middle; */
}

.feature-box:hover {
    border-color: #4CAF50;
    box-shadow: 0 6px 18px rgba(76, 175, 80, 0.12);
    transform: translateY(-2px);
}

.feature-icon {
	width: 30px;
	height: 30px;
	background: rgba(76, 175, 80, 0.1);
	color: #4CAF50;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}

.feature-content h4 {
	font-size: 0.75rem;
	font-weight: 600;
	color: #222;
	/* [disabled]margin: 3px 0 6px 0; */
	line-height: 1.35;
}

.feature-extra {
    color: #4CAF50;
    font-weight: 500;
    font-size: 0.93rem;
}

.feature-content p {
	color: #555;
	font-size: 0.60rem;
	line-height: 1.5;
	margin: 0;
}

/* ====================== TOUR CATEGORIES - YAN YANA ====================== */
.tour-categories {
    margin: 20px 0;
    background: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.categories-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.categories-header i {
    font-size: 1.35rem;
    color: #4CAF50;
}

.categories-header h3 {
    font-size: 1.15rem;
    margin: 0;
    color: #222;
    font-weight: 600;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.category-tag {
    background: #f0f8f0;
    color: #2e7d32;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.92rem;
    border: 1px solid #c8e6c9;
    white-space: nowrap;
}

.section-content p {
    margin: 9px 0;
    color: #444;
    line-height: 1.6;
}

.section-content strong {
    color: #1f2937;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
        gap: 12px;
    }
    
    .feature-box {
        padding: 13px 14px;
    }
    
    .tour-categories {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .category-tags {
        gap: 6px;
    }
    
    .category-tag {
        font-size: 0.88rem;
        padding: 5px 12px;
    }
}

/* ====================== ITINERARY & FAC1 İÇERİK DÜZENLEME ====================== */
/* ====================== ITINERARY & FAC1 İÇERİK DÜZENLEME ====================== */
.fac1, .iti {
	margin-bottom: 10px;
	background: #fff;
	padding: 10px;
	border-radius: 12px;
	border: 1px solid #eee;
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.fac1 h2, .iti h2 {
	font-size: 1.45rem;
	color: #FFFFFF;
	/* [disabled]margin-bottom: 18px; */
	/* [disabled]padding-bottom: 10px; */
	border-bottom: 2px solid #4CAF50;
}

.fac1 ul, .iti ul {
    padding-left: 20px;
    margin: 15px 0;
}

.fac1 li, .iti li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #444;
}

.fac1 p, .iti p {
    margin-bottom: 16px;
    line-height: 1.75;
    color: #333;
}

/* HTML etiketlerini daha güzel göstermek için */
.fac1 strong, .iti strong {
    color: #1f2937;
}

/* Not Recommended ve Not Permitted için kırmızı ton */
.fac1 h2:contains("Not Recommended"), 
.fac1 h2:contains("Not Permitted") {
    color: #e74c3c;
}

/* ====================== ITINERARY & FAC1 İÇERİK DÜZENLEME ====================== */
/* ====================== ITINERARY CONTENT - HTML DESTEĞİ ====================== */
.iti .itinerary-content,
.fac1 .content {
    line-height: 1.85;
    color: #333;
}

.iti .itinerary-content p,
.fac1 .content p {
	margin-bottom: 10px;
	text-indent: 30px;
}

.iti .itinerary-content ul,
.fac1 .content ul {
    padding-left: 25px;
    margin: 15px 0 20px 0;
}

.iti .itinerary-content li,
.fac1 .content li {
	margin-bottom: 0px;
	position: relative;
	list-style-type: square;
	margin-left: 40px;
	padding-left: 10px;
}

.fac1 .content h2 {
	font-size: 1.4rem;
	color: #1f2937;
	margin: 15px 0 5px 0;
	padding-bottom: 8px;
	border-bottom: 2px solid #4CAF50;
}

/* Not Recommended ve Not Permitted için kırmızı renk */
.fac1 .content h2:contains("Not") {
    color: #e74c3c;
}

.fac1 h2 {
	color: #FFFFFF;
}

.fac1 h2:where(:contains("Not Recommended"), :contains("Not Permitted")) {
    color: #e74c3c;
}



/* ====================== HIGHLIGHTS BÖLÜMÜ ====================== */
.high {
	/* [disabled]margin: 35px 0 30px; */
	background: #fff;
	padding: 10px;
	border-radius: 12px;
	border: 1px solid #eee;
	box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.section-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.section-title i {
	color: #FFFFFF;
	font-size: 1.5rem;
}

.high .tit1 {
    padding-left: 5px;
}

.high .tit1 li {
	position: relative;
	padding-left: 30px;
	/* [disabled]margin-bottom: 16px; */
	font-size: 0.85rem;
	/* [disabled]line-height: 1.78; */
	color: #333;
	list-style-type: none;
}

.high .tit1 li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1.1;
}


















/* Ana Konteyner */
#sticky-booking-container {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    border-radius: 15px 15px 0 0; /* Köşe yuvarlağını biraz azalttık */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

/* Tetikleyici Çubuk */
.sticky-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px; /* Padding 15px'den 8px'e düşürüldü, yükseklik azaldı */
    cursor: pointer;
}

.sticky-info { display: flex; 
    flex-direction: column; 
    justify-content: center; }
.sticky-label { font-size: 10px; /* Biraz daha küçültüldü */
    color: #777; 
    text-transform: uppercase; 
    line-height: 1;
    margin-bottom: 2px; }
.sticky-price {font-size: 18px; /* 20px'den 18px'e çekildi */
    font-weight: 800; 
    color: #0099ff; 
    line-height: 1;}
.sticky-per { font-size: 10px; 
    color: #999; 
    white-space: nowrap; /* Yazının kırılmasını engeller */ }

.sticky-trigger-btn {
    background: #0099ff;
    color: #fff;
    border: none;
    padding: 8px 16px; /* Buton içi boşluklar azaltıldı */
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem; /* Font biraz küçültüldü */
    transition: background 0.2s;
}
.sticky-trigger-btn:hover { background: #007acc; }

/* Gizli İçerik */
.booking-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

#sticky-booking-container.active .booking-content {
    max-height: 80vh;
    overflow-y: auto;
    padding-bottom: 30px;
}

/* Booking header */
.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.close-panel {
    background: none;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-panel:hover { background: #f5f5f5; }

/* Karartma Overlay */
#booking-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 999;
}
#booking-overlay.active { display: block; }

/* "Other Tours" kısmına gelince gizleme */
.hide-sticky {
    transform: translate(-50%, 100%) !important;
    opacity: 0 !important;
    pointer-events: none;
}

/* ===== FORM STİLLERİ ===== */
.reservform .form-group {
    margin-bottom: 14px;
}
.reservform label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
}
.reservform input[type="text"],
.reservform input[type="email"],
.reservform input[type="tel"],
.reservform textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.2s;
    background: #fafafa;
    box-sizing: border-box;
}
.reservform input:focus,
.reservform textarea:focus {
    outline: none;
    border-color: #0099ff;
    background: #fff;
}
.reservform textarea {
    height: 80px;
    resize: vertical;
}
.reservform .row {
    display: flex;
    gap: 12px;
}
.reservform .row .form-group { flex: 1; }

/* Katılımcı sayacı */
.pricing-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.category {
    flex: 1;
    min-width: 100px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: #fafafa;
}
.formp-title { text-align: center; }
.formp-title .name { font-size: 0.85rem; font-weight: 700; color: #333; margin: 0; }
.formp-title .age  { font-size: 0.72rem; color: #999; margin: 0; }
.counter {
    display: flex;
    align-items: center;
    gap: 8px;
}
.counter button {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
    transition: background 0.2s;
}
.counter button:hover { background: #0099ff; color: #fff; border-color: #0099ff; }
.counter span { font-size: 1rem; font-weight: 700; min-width: 20px; text-align: center; }

/* Hata */
.form-error { color: #e74c3c; font-size: 0.82rem; margin: 5px 0; min-height: 16px; }

/* Fiyat özeti */
.price-summary {
    background: #f0f8ff;
    border: 1px solid #cce4ff;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.95rem;
    margin-bottom: 12px;
    text-align: right;
}
.price-summary span { font-size: 1.1rem; font-weight: 800; color: #0099ff; }

/* Submit */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #0099ff, #0077cc);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-bottom: 6px;
}
.submit-btn:hover { opacity: 0.9; }
.cta-note { text-align: center; font-size: 0.78rem; color: #999; margin: 0; }

/* Takvim */
.calendar-popup {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 9999;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    width: 300px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s, transform 0.3s;
}
.calendar-popup.open { opacity: 1; transform: translateY(0); }
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.calendar-header button {
    background: none; border: 1px solid #ddd; border-radius: 6px;
    padding: 4px 10px; cursor: pointer; font-size: 14px;
}
.calendar-header button:hover { background: #f0f0f0; }
.month-select { border: 1px solid #ddd; border-radius: 6px; padding: 4px 8px; font-size: 13px; cursor: pointer; }
.calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 4px; }
.calendar-days span { text-align: center; font-size: 11px; font-weight: 700; color: #888; padding: 4px 0; }
.calendar-dates { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.calendar-date {
    text-align: center; padding: 6px 2px; border-radius: 6px;
    font-size: 13px; cursor: pointer; transition: background 0.2s;
}
.calendar-date:hover:not(.disabled) { background: #e8f4ff; }
.calendar-date.selected { background: #0099ff; color: #fff; font-weight: 700; }
.calendar-date.disabled { color: #ccc; cursor: not-allowed; }
.calendar-date.weekend { color: #e74c3c; }
.calendar-date.weekend.selected { background: #0099ff; color: #fff; }

@media (max-width: 480px) {
    .pricing-categories { flex-direction: column; }
    .category { flex-direction: row; justify-content: space-between; }
    .reservform .row { flex-direction: column; gap: 0; }
    .calendar-popup { width: calc(100vw - 60px); }
}


/* Sohbet Butonları Sarmalayıcı */
/* Sohbet Butonları Sarmalayıcı - Yan Yana */
.sticky-chat-wrapper {
    position: fixed;
    bottom: 60px; /* Barın yüksekliğine göre (Inquiry bar kapalıyken hemen üstünde) */
    right: 20px;
    display: flex;
    flex-direction: row; /* Yan yana dizilim */
    gap: 10px;
    z-index: 1002; /* Formun (1000) ve Barın üzerinde kalması için */
    pointer-events: auto; /* Tıklamayı garantiye alır */
}

/* Yuvarlak Buton Tasarımı */
.sticky-chat-wrapper .chat-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sticky-chat-wrapper .chat-icon:hover {
    transform: translateY(-3px); /* Üzerine gelince hafif yukarı zıplar */
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.telegram-btn { background-color: #0088cc; }
.whatsapp-btn { background-color: #25D366; }

/* Mobilde Inquiry Bar biraz daha dar olabileceği için butonları küçültelim */
@media (max-width: 768px) {
    .sticky-chat-wrapper {
        bottom: 55px;
        right: 15px;
        gap: 8px;
    }
    .sticky-chat-wrapper .chat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}