/* style.css - Rezervasyon Yap Klonu Tasarım Kuralları */
:root {
    --primary-color: #FA5636; /* Orijinal Turuncu-Kırmızı */
    --primary-hover: #e04425;
    --dark-color: #1A2B48; /* Orijinal Lacivert */
    --dark-hover: #121e33;
    --bg-light: #F7F9FB;
    --border-color: #DFE4EC;
    --text-color: #5E6D77;
    --heading-color: #1A2B48;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 999px;
    
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Global resets */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    transition: var(--transition);
}
a:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: #cdd3dd;
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: #b1b9c5;
}

/* Topbar */
.bravo_topbar {
    background-color: var(--dark-color);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    padding: 10px 0;
}
.bravo_topbar .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bravo_topbar .topbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.bravo_topbar .topbar-left a {
    color: #fff;
    text-decoration: none;
}
.bravo_topbar .socials {
    display: flex;
    gap: 12px;
}
.bravo_topbar .socials a {
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
}
.bravo_topbar .socials a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}
.bravo_topbar .line {
    width: 1px;
    height: 14px;
    background-color: rgba(255,255,255,0.2);
}
.bravo_topbar .topbar-right .topbar-items {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.bravo_topbar .topbar-right a {
    color: #fff;
    font-weight: 500;
}
.bravo_topbar .topbar-right a:hover {
    color: var(--primary-color);
}

/* Header */
.bravo_header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 99;
}
.bravo_header .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.bravo_header .bravo-logo img {
    max-height: 48px;
    transition: var(--transition);
}
.bravo_header .bravo-logo:hover img {
    transform: scale(1.03);
}
.bravo_header .bravo-menu .main-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.bravo_header .bravo-menu .main-menu a {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
}
.bravo_header .bravo-menu .main-menu li.active a,
.bravo_header .bravo-menu .main-menu a:hover {
    color: var(--primary-color);
}
.bravo_header .bravo-menu .main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}
.bravo_header .bravo-menu .main-menu li.active a::after,
.bravo_header .bravo-menu .main-menu a:hover::after {
    width: 100%;
}
.bravo-more-menu {
    display: none;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 18px;
    cursor: pointer;
    color: var(--dark-color);
}

/* Banner */
.bravo_banner {
    height: 300px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}
.bravo_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 43, 72, 0.4);
}
.bravo_banner .container {
    position: relative;
    z-index: 2;
}
.bravo_banner h1 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 0;
    animation: slideUp var(--transition);
}

/* Horizontal Search Form */
.bravo_form_search {
    background-color: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 15px;
    margin-top: -45px;
    position: relative;
    z-index: 10;
}
.bravo_form_search .g-field-search {
    width: calc(100% - 130px);
    display: inline-block;
}
.bravo_form_search .g-button-submit {
    width: 120px;
    display: inline-block;
    vertical-align: top;
    text-align: right;
}
.bravo_form_search .btn-search {
    width: 100%;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 18px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.bravo_form_search .btn-search:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
}
.bravo_form_search .form-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}
.bravo_form_search .field-icon {
    font-size: 20px;
    color: var(--primary-color);
    width: 25px;
}
.bravo_form_search label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    margin-bottom: 2px;
    display: block;
}
.bravo_form_search .form-content {
    flex-grow: 1;
}
.bravo_form_search input,
.bravo_form_search select {
    border: none;
    outline: none;
    font-weight: 600;
    color: var(--dark-color);
    padding: 0;
    background: transparent;
}
.bravo_form_search .form-date-inputs {
    display: flex;
    align-items: center;
    gap: 5px;
}
.bravo_form_search .form-control-date {
    border: none;
    outline: none;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 13px;
    width: 110px;
}
.bravo_form_search .date-sep {
    color: var(--text-color);
}

/* Sidebar Filter */
.bravo_filter {
    background-color: transparent;
    border: none;
    padding: 0;
    margin-bottom: 30px;
}
.bravo_filter .filter-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 18px;
    padding-bottom: 0;
    border-bottom: none;
    letter-spacing: 0.5px;
}
.g-filter-item {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: var(--transition);
}
.g-filter-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.g-filter-item:last-of-type {
    margin-bottom: 0;
}
.g-filter-item .item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    transition: margin-bottom var(--transition);
}
.g-filter-item .item-title.collapsed {
    margin-bottom: 0;
}
.g-filter-item .item-title h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.g-filter-item .item-title i {
    color: var(--text-color);
    font-size: 16px;
}
.g-filter-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Custom range slider styling */
.price-slider-container input[type="range"] {
    accent-color: var(--primary-color);
    width: 100%;
}
.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}
.price-labels .price-max-text {
    color: var(--primary-color);
}

/* Custom Checkboxes */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    user-select: none;
}
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    transition: var(--transition);
}
.checkbox-container:hover input ~ .checkmark {
    border-color: var(--primary-color);
}
.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}
.checkbox-container .checkmark:after {
    left: 6px;
    top: 3px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.btn-filter-submit {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    font-size: 13px;
    font-weight: 700;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-filter-submit:hover {
    background-color: var(--dark-hover);
    border-color: var(--dark-hover);
}

/* Listings Grid */
.main-content-layout {
    margin-top: 40px;
}
.topbar-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.topbar-search h2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}
.topbar-search .control a {
    color: var(--text-color);
    font-size: 13px;
    font-weight: 500;
}
.topbar-search .control a:hover {
    color: var(--primary-color);
}

/* Listing Card Loop */
.item-loop {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.item-loop:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(26, 43, 72, 0.12);
}
.item-loop .featured {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    z-index: 3;
}
.item-loop .thumb-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.item-loop .thumb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.item-loop:hover .thumb-image img {
    transform: scale(1.08);
}
.item-loop .price-wrapper {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgba(26, 43, 72, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    z-index: 3;
}
.item-loop .price-wrapper .text-price {
    font-size: 15px;
    font-weight: 700;
}
.item-loop .price-wrapper .unit {
    font-size: 10px;
    font-weight: 400;
}
.item-loop .price-wrapper .price-sub {
    font-size: 9px;
    display: block;
    opacity: 0.8;
}
.item-loop .service-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-color);
    transition: var(--transition);
    z-index: 3;
}
.item-loop .service-wishlist:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: scale(1.1);
}
.item-loop .item-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.item-loop .item-title {
    margin-bottom: 6px;
}
.item-loop .item-title a {
    color: var(--heading-color);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}
.item-loop .item-title a:hover {
    color: var(--primary-color);
}
.item-loop .location {
    font-size: 12px;
    color: var(--text-color);
    margin-bottom: 12px;
}
.item-loop .location i {
    color: var(--primary-color);
}
.item-loop .service-review {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    margin-bottom: 15px;
}
.item-loop .service-review .rate {
    background-color: #ebf3ff;
    color: #3b82f6;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}
.item-loop .service-review .review {
    color: var(--text-color);
}
.item-loop .amenities {
    display: flex;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    margin-top: auto;
    font-size: 12px;
    color: var(--text-color);
}
.item-loop .amenity i {
    color: var(--primary-color);
    margin-right: 3px;
}

/* Pagination */
.bravo-pagination {
    margin-top: 40px;
    text-align: center;
}
.bravo-pagination .pagination {
    justify-content: center;
    margin-bottom: 8px;
}
.bravo-pagination .page-link {
    color: var(--text-color);
    border-color: var(--border-color);
}
.bravo-pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.bravo-pagination .count-string {
    font-size: 12px;
    color: var(--text-color);
}

/* Newsletter Section */
.mailchimp {
    background-color: var(--dark-color);
    color: #fff;
    padding: 30px 0;
    margin-top: 50px;
}
.mailchimp .media-left {
    font-size: 40px;
    margin-right: 20px;
    color: var(--primary-color);
}
.mailchimp h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}
.mailchimp p {
    font-size: 13px;
    color: #a4b3cc;
    margin: 0;
}
.mailchimp .subcribe-form {
    position: relative;
}
.mailchimp .form-control {
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 24px 150px 24px 20px;
    border-radius: var(--radius-sm);
}
.mailchimp .form-control::placeholder {
    color: #a4b3cc;
}
.mailchimp .btn-submit {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: var(--primary-color);
    border: none;
    color: #fff;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}
.mailchimp .btn-submit:hover {
    background-color: var(--primary-hover);
}

/* Footer Area */
.bravo_footer {
    background-color: #111a2e;
    color: #a4b3cc;
}
.bravo_footer .main-footer {
    padding: 60px 0 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bravo_footer .nav-footer .title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.bravo_footer .nav-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bravo_footer .nav-footer a {
    color: #a4b3cc;
    text-decoration: none;
    font-size: 13px;
}
.bravo_footer .nav-footer a:hover {
    color: #fff;
}
.bravo_footer .contact .c-title {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}
.bravo_footer .contact .sub {
    font-size: 13px;
    line-height: 1.5;
}
.bravo_footer .footer-bottom {
    padding: 20px 0;
    background-color: #0d1424;
    font-size: 12px;
}

/* Auth / Detail Modals Custom Stylings */
.auth-modal {
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    overflow: hidden;
}
.btn-auth-submit {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-auth-submit:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.detail-modal-content {
    border-radius: var(--radius-lg);
    border: none;
    overflow: hidden;
    position: relative;
}
.close-detail-btn {
    position: absolute !important;
    right: 15px !important;
    top: 15px !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    color: #fff !important;
    opacity: 0.9 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1100 !important;
    text-shadow: none !important;
    transition: var(--transition) !important;
    border: none !important;
    outline: none !important;
}
.close-detail-btn span {
    color: #fff !important;
    font-size: 26px !important;
    line-height: 1 !important;
    margin-top: -3px !important;
}
.close-detail-btn:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    opacity: 1 !important;
    transform: rotate(90deg);
}
.detail-gallery {
    background-color: #ddd;
}
.modal-gallery-main {
    height: 320px;
}
.detail-gallery img,
.space-gallery-main img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Space page & modal gallery */
.space-gallery-wrap { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-color); }
.space-gallery-main { position: relative; height: 420px; background: #e9edf2; }
.modal-gallery-main { height: 320px; }
.space-gallery-main img { display: block; }
.gallery-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%; border: none;
    background: rgba(255,255,255,0.92); color: var(--heading-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15); z-index: 5; cursor: pointer;
}
.gallery-nav-btn:hover { background: var(--primary-color); color: #fff; }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-counter {
    position: absolute; bottom: 12px; right: 12px;
    background: rgba(0,0,0,0.65); color: #fff; padding: 4px 10px;
    border-radius: 20px; font-size: 12px; font-weight: 600;
}
.space-gallery-thumbs {
    display: flex; gap: 8px; padding: 12px; overflow-x: auto;
    background: #f8fafc; border-top: 1px solid var(--border-color);
}
.modal-gallery-thumbs { max-height: 92px; }
.gallery-thumb {
    flex: 0 0 72px; width: 72px; height: 56px; padding: 0; border: 2px solid transparent;
    border-radius: 8px; overflow: hidden; background: none; cursor: pointer; opacity: 0.7;
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--primary-color); opacity: 1; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-page-wrap { padding: 40px 0 60px; }
.detail-sidebar { background: #fff; border: 1px solid var(--border-color); border-radius: 12px; padding: 24px; position: sticky; top: 20px; }
.detail-price { font-size: 28px; font-weight: 700; color: var(--primary-color); }
.detail-content { background: #fff; border-radius: 12px; padding: 28px; border: 1px solid var(--border-color); }
.detail-content img { max-width: 100%; height: auto; }
.hidden { display: none !important; }

.detail-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
}
.badge-type {
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    background-color: var(--primary-color);
}
.detail-city {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    margin-left: 8px;
}
.detail-specs {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
}

.booking-sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sidebar-price-header .sidebar-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color);
}
.btn-booking-action {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 12px;
}
.btn-booking-action:hover:not(:disabled) {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}
.btn-booking-action:disabled {
    background-color: #b1b9c5;
    border-color: #b1b9c5;
    cursor: not-allowed;
}

.price-breakdown {
    animation: fadeIn var(--transition);
}

/* Checkout Stepper UI */
.checkout-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 12px;
}
.checkout-steps .step {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 6px;
}
.checkout-steps .step span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--border-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}
.checkout-steps .step.active {
    color: var(--primary-color);
}
.checkout-steps .step.active span {
    background-color: var(--primary-color);
    color: #fff;
}
.checkout-steps .step.completed {
    color: #28a745;
}
.checkout-steps .step.completed span {
    background-color: #28a745;
    color: #fff;
}

.btn-checkout-step {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px;
    font-weight: 600;
}
.btn-checkout-step:hover {
    background-color: var(--primary-hover);
}
.bg-warning-light {
    background-color: #fffbeb;
    border: 1px solid #fef3c7;
}

/* Toast Notifications */
.toast-notification-wrap {
    position: fixed;
    bottom: 20px;
    right: -320px;
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.2);
}
.toast-notification-wrap.active {
    right: 20px;
}
.toast-content-card {
    background-color: #fff;
    border-left: 4px solid #28a745;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.toast-notification-wrap.error .toast-content-card {
    border-left-color: #dc3545;
}
.toast-notification-wrap.error .t-icon {
    color: #dc3545;
}
.toast-content-card .t-icon {
    color: #28a745;
    font-size: 15px;
}
.toast-content-card .t-message {
    font-weight: 600;
    font-size: 13px;
    color: var(--heading-color);
}

/* Helper Class */
.hidden {
    display: none !important;
}

/* Animations */
@keyframes slideUp {
    from { transform: translateY(15px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media(max-width: 991px) {
    .bravo_form_search .g-field-search {
        width: 100%;
        margin-bottom: 12px;
    }
    .bravo_form_search .g-button-submit {
        width: 100%;
    }
    .bravo_form_search {
        margin-top: -30px;
    }
    .bravo-more-menu {
        display: block;
    }
    .bravo_header .bravo-menu {
        display: none;
        width: 100%;
        margin-top: 15px;
    }
    .bravo_header .bravo-menu .main-menu {
        flex-direction: column;
        gap: 10px;
    }
    .bravo_header .content {
        flex-wrap: wrap;
    }
}
@media(max-width: 767px) {
    .bravo_topbar .content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .bravo_topbar .topbar-right .topbar-items {
        justify-content: center;
    }
    .bravo_banner h1 {
        font-size: 28px;
    }
    .main-footer .col-lg-4 {
        text-align: center;
    }
    .main-footer .contact {
        text-align: center;
    }
}

/* ========================
   Kayan Yazı Şeridi (Ticker)
======================== */
.bravo_ticker {
    background: linear-gradient(90deg, #1a6fc4 0%, #1056a0 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    position: relative;
    z-index: 200;
    letter-spacing: 0.3px;
}
.ticker-inner {
    display: inline-block;
    white-space: nowrap;
    animation: tickerScroll 40s linear infinite;
}
.ticker-text {
    display: inline-block;
    padding-right: 60px;
}
.bravo_ticker:hover .ticker-inner {
    animation-play-state: paused;
}
@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================
   WhatsApp Animasyonlu Balon
======================== */
.whatsapp-bubble {
    position: fixed;
    bottom: 28px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    text-decoration: none;
    animation: waPulse 2.5s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-bubble:hover {
    background-color: #1da851;
    color: #fff;
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
    text-decoration: none;
    animation: none;
}
.whatsapp-bubble .fa-whatsapp {
    line-height: 1;
}
.wa-tooltip {
    position: absolute;
    right: 70px;
    background-color: #1a2b48;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: #1a2b48;
}
.whatsapp-bubble:hover .wa-tooltip {
    opacity: 1;
}
@keyframes waPulse {
    0%   { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); transform: scale(1); }
    50%  { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.8); transform: scale(1.05); }
    100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); transform: scale(1); }
}
/* WhatsApp balon etrafında yayılan halka animasyonu */
.whatsapp-bubble::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.4;
    animation: waRing 2.5s ease-in-out infinite;
    z-index: -1;
}
@keyframes waRing {
    0%   { transform: scale(1); opacity: 0.4; }
    70%  { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Homepage */
.home-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px 0 120px;
    color: #fff;
}
.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,43,72,0.55) 0%, rgba(26,43,72,0.75) 100%);
}
.home-hero .container { position: relative; z-index: 1; }
.home-hero-content { text-align: center; margin-bottom: 40px; }
.home-hero-content h1 { font-size: 42px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.home-hero-content p { font-size: 18px; opacity: 0.9; }
.home-search-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
}
.home-search-btn { margin-top: 16px; width: 100%; padding: 14px; font-weight: 700; }
.home-features { padding: 50px 0; background: #fff; }
.feature-box { text-align: center; padding: 20px; }
.feature-box i { font-size: 36px; color: var(--primary-color); margin-bottom: 16px; }
.feature-box h3 { font-size: 15px; font-weight: 700; color: var(--heading-color); margin-bottom: 8px; }
.feature-box p { font-size: 14px; margin: 0; }
.home-section { padding: 50px 0; }
.section-heading { text-align: center; margin-bottom: 32px; }
.section-heading h2 { font-size: 28px; font-weight: 700; color: var(--heading-color); }
.section-heading p { color: var(--text-color); }
.home-space-card { display: block; background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-color); transition: var(--transition); color: inherit; }
.home-space-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); color: inherit; }
.home-space-thumb { position: relative; height: 180px; overflow: hidden; }
.home-space-thumb img { width: 100%; height: 100%; object-fit: cover; }
.home-space-price { position: absolute; bottom: 10px; left: 10px; background: var(--primary-color); color: #fff; padding: 4px 10px; border-radius: 6px; font-weight: 700; font-size: 13px; }
.home-space-body { padding: 14px; }
.home-space-body h4 { font-size: 15px; font-weight: 600; color: var(--heading-color); margin-bottom: 6px; }
.home-space-body span { font-size: 12px; color: var(--text-color); }
.home-category-card { display: block; background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-color); height: 100%; color: inherit; transition: var(--transition); }
.home-category-card:hover { box-shadow: 0 10px 24px rgba(0,0,0,0.08); color: inherit; }
.home-category-image { height: 140px; background-size: cover; background-position: center; }
.home-category-body { padding: 18px; }
.home-category-body i { font-size: 24px; color: var(--primary-color); margin-bottom: 10px; }
.home-category-body h3 { font-size: 16px; font-weight: 700; color: var(--heading-color); }
.home-category-body p { font-size: 13px; margin-bottom: 10px; }
.home-category-link { font-size: 13px; font-weight: 600; color: var(--primary-color); }
ui-styles-end
.home-dest-card { display: block; border-radius: 12px; overflow: hidden; }
.home-dest-image { height: 160px; background-size: cover; background-position: center; position: relative; }
.home-dest-image span { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(26,43,72,0.45); color: #fff; font-weight: 700; font-size: 18px; transition: var(--transition); }
.home-dest-card:hover .home-dest-image span { background: rgba(250,86,54,0.75); color: #fff; }

/* ==========================================================================
   Home, Activities & Regions Reference Styles
   ========================================================================== */

/* Hero Search Tabs */
.bravo-form-search-all {
    background-size: cover !important;
    background-position: center !important;
    padding: 100px 0 140px 0;
    position: relative;
    color: #fff;
}
.bravo-form-search-all::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}
.bravo-form-search-all .container {
    position: relative;
    z-index: 2;
}
.bravo-form-search-all .text-heading {
    font-size: 42px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    text-align: center;
}
.bravo-form-search-all .sub-heading {
    font-size: 18px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
    margin-bottom: 40px;
    text-align: center;
    opacity: 0.9;
}
.bravo-form-search-all .g-form-control {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    max-width: 900px;
    margin: 0 auto;
}
.bravo-form-search-all .nav-tabs {
    border-bottom: none;
    margin-bottom: 20px;
    justify-content: center;
    gap: 10px;
}
.bravo-form-search-all .nav-tabs li a {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    background: rgba(255,255,255,0.1);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.bravo-form-search-all .nav-tabs li a.active,
.bravo-form-search-all .nav-tabs li a:hover {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
.bravo-form-search-all .tab-content {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 20px;
}
.bravo-form-search-all .bravo_form {
    display: flex;
    align-items: center;
    width: 100%;
}
.bravo-form-search-all .g-field-search {
    flex-grow: 1;
}
.bravo-form-search-all .g-button-submit {
    margin-left: 20px;
    width: 120px;
}
.bravo-form-search-all .btn-search {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    width: 100%;
    transition: var(--transition);
}
.bravo-form-search-all .btn-search:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
}
.bravo-form-search-all .form-group {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.bravo-form-search-all .form-group label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}
.bravo-form-search-all .form-control {
    border: none;
    font-weight: 600;
    color: var(--dark-color);
    padding: 0;
    height: auto;
    background: transparent;
}
.bravo-form-search-all .form-group i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Featured Items style 5 */
.bravo-featured-item {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}
.bravo-featured-item .featured-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.bravo-featured-item .featured-item .image img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.bravo-featured-item .featured-item .content .title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 4px;
}
.bravo-featured-item .featured-item .content .desc {
    font-size: 12px;
    color: var(--text-color);
    line-height: 1.5;
}

/* Call to action */
.bravo-call-to-action {
    background-color: var(--primary-color);
    color: #fff;
    padding: 30px 0;
}
.bravo-call-to-action .context {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bravo-call-to-action .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}
.bravo-call-to-action .sub_title {
    font-size: 14px;
    opacity: 0.95;
    color: #fff;
}
.bravo-call-to-action .btn-more {
    background-color: #fff;
    color: var(--primary-color) !important;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}
.bravo-call-to-action .btn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    text-decoration: none;
}
.bravo-call-to-action.style_2 {
    background: transparent;
    padding: 40px 0;
}
.bravo-call-to-action.style_2 .context {
    background-size: cover !important;
    background-position: center !important;
    padding: 50px 40px;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    color: #fff;
}
.bravo-call-to-action.style_2 .context::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}
.bravo-call-to-action.style_2 .row {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Offer grid */
.bravo-offer {
    padding: 60px 0;
    background-color: var(--bg-light);
}
.bravo-offer .item {
    position: relative;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px;
    height: 280px;
    margin-bottom: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    z-index: 1;
}
.bravo-offer .item .img-cover {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover !important;
    background-position: center !important;
    z-index: -2;
    transition: transform 0.5s ease;
}
.bravo-offer .item:hover .img-cover {
    transform: scale(1.06);
}
.bravo-offer .item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(26,43,72,0.1) 0%, rgba(26,43,72,0.85) 100%);
    z-index: -1;
}
.bravo-offer .item .featured-text {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}
.bravo-offer .item .item-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.bravo-offer .item .item-sub-title {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bravo-offer .item .btn-default {
    background: #fff;
    color: var(--dark-color);
    border: none;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    align-self: flex-start;
    transition: var(--transition);
}
.bravo-offer .item .btn-default:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Regions styling */
.bravo-list-locations {
    padding: 60px 0;
}
.bravo-list-locations .title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 5px;
}
.bravo-list-locations .sub-title {
    font-size: 14px;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
}
.destination-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 30px;
    height: 220px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.destination-item .image {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    transition: transform 0.5s ease;
}
.destination-item:hover .image {
    transform: scale(1.05);
}
.destination-item .effect {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
}
.destination-item .content {
    position: absolute;
    bottom: 20px; left: 20px;
    z-index: 2;
}
.destination-item .content .title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.destination-item.no-image .image {
    background: var(--dark-color) !important;
}

/* News List */
.bravo-list-news {
    padding: 60px 0;
    background: #fff;
}
.bravo-list-news .title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 5px;
}
.bravo-list-news .sub-title {
    font-size: 14px;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
}
.item-news {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}
.item-news:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.item-news .thumb-image {
    height: 200px;
    overflow: hidden;
}
.item-news .thumb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.item-news:hover .thumb-image img {
    transform: scale(1.05);
}
.item-news .caption {
    padding: 20px;
}
.item-news .item-date {
    margin-bottom: 10px;
}
.item-news .item-date ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; gap: 10px;
    font-size: 12px; color: var(--text-color);
}
.item-news .item-date a {
    color: var(--primary-color);
    font-weight: 600;
}
.item-news .item-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}
.item-news .item-title a {
    color: var(--heading-color);
    text-decoration: none;
    transition: var(--transition);
}
.item-news .item-title a:hover {
    color: var(--primary-color);
}
.item-news .item-desc {
    font-size: 13px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.item-news .item-more .btn-readmore {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}
.item-news .item-more .btn-readmore:hover {
    color: var(--primary-hover);
}

/* --- Mobile Sidebar Menu --- */
.bravo-menu-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background-color: #fff;
    z-index: 10050; /* Above bootstrap modal backdrop if needed, but below modal itself */
    display: none;
    flex-direction: column;
    box-shadow: 5px 0 25px rgba(0,0,0,0.15);
    overflow-y: auto;
}

.bravo-menu-mobile .user-profile {
    background-color: var(--dark-color);
    padding: 30px 20px 20px;
    color: #fff;
    position: relative;
}

.bravo-menu-mobile .user-profile .b-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}
.bravo-menu-mobile .user-profile .b-close:hover {
    color: var(--primary-color);
    transform: translateX(-3px);
}

.bravo-menu-mobile .user-profile .avatar {
    margin-bottom: 15px;
}

.bravo-menu-mobile .user-profile ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.bravo-menu-mobile .user-profile ul li a {
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.bravo-menu-mobile .user-profile ul li a:hover {
    color: var(--primary-color);
}

.bravo-menu-mobile .user-profile .dropdown-menu {
    background-color: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.bravo-menu-mobile .user-profile .dropdown-menu a {
    color: var(--dark-color) !important;
}
.bravo-menu-mobile .user-profile .dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color) !important;
}

.bravo-menu-mobile .g-menu {
    padding: 25px 20px;
}

.bravo-menu-mobile .g-menu .main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bravo-menu-mobile .g-menu .main-menu li a {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.bravo-menu-mobile .g-menu .main-menu li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.bravo-menu-mobile .g-menu .main-menu li.active a {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}


