:root {
    --primary-color: var(--theme-primary, #103474);
    --secondary-color: var(--theme-secondary, #FFC107);
    --dark-color: #2c3e50;
    --light-bg: #f8f9fa;
    --transition: all 0.3s ease;
}

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

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px;
    margin: 0;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

.main-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1020;
    padding: 0;
    overflow: visible;
}

.main-navbar.transparent {
    background: transparent;
    box-shadow: none;
}

.main-navbar.transparent .menu-item > a {
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.main-navbar.transparent .menu-item > a:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}

.main-navbar.transparent .navbar-logo img {
    filter: brightness(0) invert(1);
}

.main-navbar.transparent .dropdown-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.main-navbar.transparent .dropdown-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
}

.main-navbar.transparent .menu-item > a {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-weight: 600;
}

.main-navbar.transparent .menu-item > a:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
}

.main-navbar.transparent .navbar-brand-logo img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.main-navbar .container-fluid {
    overflow: visible;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 2rem;
    position: relative;
}

.navbar-brand-section {
    flex-shrink: 0;
}

.navbar-brand-logo img {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.navbar-brand-logo:hover img {
    transform: scale(1.05);
}

.navbar-menu-section {
    flex: 1;
    display: flex;
    justify-content: center;
    position: static;
}

.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    position: relative;
}

.menu-item {
    position: relative;
}

.menu-item a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.2rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: var(--transition);
}

.menu-item i {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.menu-item a:hover,
.menu-item.active a {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.menu-item a:hover i,
.menu-item.active a i {
    opacity: 1;
}

.menu-item.has-submenu {
    position: relative;
}

.menu-item.has-submenu > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submenu-arrow {
    font-size: 0.65rem !important;
    opacity: 0.7 !important;
    transition: transform 0.3s ease;
}

.menu-item.has-submenu:hover .submenu-arrow {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    min-width: 240px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    padding: 0.5rem;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    list-style: none;
    border: 1px solid rgba(0,0,0,0.08);
}

.menu-item.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    margin: 0;
}

.submenu li:not(:last-child) {
    margin-bottom: 0.25rem;
}

.submenu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.submenu li a:hover {
    background: var(--primary-color);
    color: white !important;
    padding-left: 1.5rem;
}

.navbar-actions-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.navbar-selectors {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.navbar-actions-section {
    display: flex;
    align-items: center;
}

.navbar-dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--primary-color);
    border: 2px solid transparent;
    border-radius: 25px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dropdown-btn i {
    font-size: 0.85rem;
}

.dropdown-btn .fa-chevron-down {
    font-size: 0.7rem;
    opacity: 0.8;
}

.dropdown-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.navbar-dropdown .dropdown-menu {
    min-width: 200px;
    padding: 0.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
}

.navbar-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--primary-color);
}

.navbar-dropdown .dropdown-item {
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.navbar-dropdown .dropdown-item:hover {
    background: var(--primary-color);
    color: white;
}

.navbar-dropdown .dropdown-item.active {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
    font-weight: 600;
    border-left: 3px solid var(--primary-color);
}

.navbar-dropdown .dropdown-item.text-danger:hover {
    background: #dc3545;
    color: white;
}

.navbar-dropdown .dropdown-divider {
    margin: 0.5rem 0;
    border-top: 1px solid #e0e0e0;
}

.flag-icon,
.currency-icon {
    font-weight: 600;
    opacity: 0.8;
}

.btn-rezervasyon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-rezervasyon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu {
    width: 300px;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid #eee;
}

.mobile-menu-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-menu-list a i {
    width: 20px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.mobile-menu-list a:hover {
    background: #f8f9fa;
    padding-left: 1.5rem;
}

.mobile-menu-footer {
    padding: 1.5rem 1rem;
    border-top: 1px solid #eee;
    margin-top: 1rem;
}

.mobile-menu-footer .dropdown-toggle {
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 500;
}

.mobile-menu-footer .dropdown-toggle:hover,
.mobile-menu-footer .dropdown-toggle:focus {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.mobile-menu-footer .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.mobile-menu-footer .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: transparent;
}

.mobile-menu-footer .btn-primary {
    background: var(--primary-color);
    border: none;
    color: white;
}

.mobile-menu-footer .btn-primary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-menu-list .has-submenu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu-list .has-submenu.open .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu li {
    border-bottom: none;
}

.mobile-submenu a {
    padding-left: 3rem !important;
    font-size: 0.9rem;
    color: #666;
}

.mobile-submenu a:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.mobile-menu-list .has-submenu > a .fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.mobile-menu-list .has-submenu.open > a .fa-chevron-down {
    transform: rotate(180deg);
}

.btn-primary {
    background: var(--primary-color) !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
    color: white !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white !important;
    background: var(--secondary-color) !important;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-section {
    position: relative;
    width: 100%;
}

.accordion-slider {
    display: flex;
    width: 100%;
    height: 500px;
    gap: 8px;
    padding: 0;
    overflow: hidden;
}

.accordion-slider .slide-item {
    position: relative;
    flex: 1;
    min-width: 80px;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-slider .slide-item.active {
    flex: 5;
}

.accordion-slider .slide-item .slide-mini {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.accordion-slider .slide-item.active .slide-mini {
    opacity: 0;
}

.accordion-slider .slide-item .slide-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.accordion-slider .slide-item.active .slide-full {
    opacity: 1;
}

.accordion-slider .slide-item .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7) 100%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.accordion-slider .slide-item.active .slide-overlay {
    opacity: 1;
}

.accordion-slider .slide-item .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 4;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.accordion-slider .slide-item.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.accordion-slider .slide-item .slide-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.accordion-slider .slide-item .slide-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.accordion-slider .slide-item .slide-desc {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    max-width: 500px;
}

.accordion-slider .slide-item .slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.accordion-slider .slide-item .slide-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.accordion-slider .slide-item .slide-number {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.15);
    z-index: 4;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.accordion-slider .slide-item.active .slide-number {
    opacity: 1;
}

.accordion-slider .slide-item .slide-indicator {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%) rotate(-90deg);
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    z-index: 5;
    opacity: 1;
    transition: opacity 0.3s ease;
    letter-spacing: 1px;
}

.accordion-slider .slide-item.active .slide-indicator {
    opacity: 0;
}

@media (max-width: 992px) {
    .accordion-slider {
        height: 400px;
        gap: 6px;
    }
    
    .accordion-slider .slide-item {
        min-width: 60px;
    }
    
    .accordion-slider .slide-item .slide-content {
        padding: 1.5rem;
    }
    
    .accordion-slider .slide-item .slide-title {
        font-size: 1.5rem;
    }
    
    .accordion-slider .slide-item .slide-desc {
        font-size: 0.9rem;
        display: none;
    }
    
    .accordion-slider .slide-item .slide-number {
        font-size: 2.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 768px) {
    .accordion-slider {
        height: 350px;
        gap: 4px;
    }
    
    .accordion-slider .slide-item {
        min-width: 50px;
        border-radius: 12px;
    }
    
    .accordion-slider .slide-item .slide-content {
        padding: 1rem;
    }
    
    .accordion-slider .slide-item .slide-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }
    
    .accordion-slider .slide-item .slide-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .accordion-slider .slide-item .slide-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .accordion-slider .slide-item .slide-number {
        display: none;
    }
    
    .accordion-slider .slide-item .slide-indicator {
        font-size: 0.75rem;
    }
}

.heroSwiper {
    width: 100%;
    height: 600px;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: #ffffff;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
    line-height: 1.6;
    font-weight: 400;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(139,69,19,0.7);
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(139,69,19,0.9);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

.search-section {
    position: relative;
    margin-top: -35px;
    padding: 0 0 1rem;
    z-index: 100;
    background: transparent;
}

.search-box-live {
    background: white;
    border-radius: 60px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.05);
}

.live-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.live-search-icon {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.live-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0.875rem 0;
    background: transparent;
    color: #333;
}

.live-search-input::placeholder {
    color: #999;
}

.live-search-results {
    position: absolute;
    top: calc(100% + 1rem);
    left: -1.5rem;
    right: -1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.live-search-results.active {
    display: block;
}

.live-search-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

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

.live-search-item:hover {
    background: #f8f9fa;
}

.live-search-item-image {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.live-search-item-info {
    flex: 1;
    min-width: 0;
}

.live-search-item-title {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-search-item-meta {
    font-size: 0.8125rem;
    color: #666;
}

.live-search-item-price {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color);
    white-space: nowrap;
}

.live-search-item-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #666;
    font-size: 1.25rem;
}

.live-search-type {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.live-search-type-module {
    background: #e3f2fd;
    color: #1565c0;
}

.live-search-type-category {
    background: #fff3e0;
    color: #ef6c00;
}

.live-search-type-blog {
    background: #f3e5f5;
    color: #7b1fa2;
}

.live-search-type-page {
    background: #e8f5e9;
    color: #2e7d32;
}

.live-search-type-provider {
    background: #fce4ec;
    color: #c2185b;
}

.live-search-empty {
    padding: 2rem;
    text-align: center;
    color: #999;
}

.live-search-loading {
    padding: 1.5rem;
    text-align: center;
    color: #666;
}

.search-box {
    background: white;
    border-radius: 60px;
    padding: 0.5rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.05);
}

.search-form-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    min-width: 0;
}

.search-icon {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.search-field-content {
    flex: 1;
    min-width: 0;
}

.search-field-content label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-select,
.search-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    outline: none;
    padding: 0;
    cursor: pointer;
}

.search-input {
    cursor: text;
}

.search-input::placeholder {
    color: #999;
    font-weight: 400;
}

.search-select:focus,
.search-input:focus {
    outline: none;
}

.search-select option {
    padding: 0.75rem;
    font-size: 0.95rem;
}

.search-field:hover {
    background: rgba(0,0,0,0.02);
    border-radius: 50px;
    transition: var(--transition);
}

.search-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
    flex-shrink: 0;
}

.search-btn {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.search-btn i {
    font-size: 1.1rem;
}

.search-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

@media (max-width: 991px) {
    .search-section {
        margin-top: -25px;
        padding: 0 1rem 1rem;
    }
    
    .search-box-live {
        border-radius: 30px;
        padding: 0.25rem 1rem;
    }
    
    .live-search-input {
        font-size: 0.9375rem;
        padding: 0.75rem 0;
    }
    
    .live-search-results {
        left: -1rem;
        right: -1rem;
        border-radius: 12px;
        max-height: 350px;
    }
    
    .live-search-item {
        padding: 0.75rem 1rem;
    }
    
    .live-search-item-image {
        width: 48px;
        height: 48px;
    }
    
    .search-box {
        border-radius: 20px;
    }
    
    .search-form-wrapper {
        flex-direction: column;
        gap: 0;
    }
    
    .search-field {
        padding: 0.9rem 1.2rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .search-field:last-of-type {
        border-bottom: none;
    }
    
    .search-divider {
        display: none;
    }
    
    .search-btn {
        width: calc(100% - 1rem);
        margin: 0.5rem 0.5rem 0.5rem 0.5rem;
        justify-content: center;
    }
    
    .section-header-flex {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .results-count {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
    
    .module-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .module-card {
        height: 280px;
    }
    
    .module-card-title {
        font-size: 0.9rem;
    }
    
    .module-card-price .price-value {
        font-size: 1.1rem;
    }
    
    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .discover-card {
        height: 280px;
    }
    
    .discover-card-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .module-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .module-card {
        height: 220px;
    }
    
    .module-card-content {
        padding: 0.75rem;
    }
    
    .module-card-title {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }
    
    .module-card-price .price-value {
        font-size: 1rem;
    }
    
    .module-card-location {
        font-size: 0.7rem;
    }
    
    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .discover-card {
        height: 220px;
    }
}

.btn-search:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.4);
    color: white;
}

.btn-search i {
    font-size: 1.2rem;
}

.flatpickr-calendar {
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.flatpickr-day.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.flatpickr-day.selected:hover {
    background: var(--secondary-color);
}


.features-section {
    padding: 5rem 0;
}

.feature-card {
    padding: 2rem;
    transition: var(--transition);
    border-radius: 10px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
}

.module-section,
.blog-section {
    padding: 2.5rem 0;
    background: #fafafa;
}

.module-section:nth-child(even),
.blog-section:nth-child(even) {
    background: white;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.results-count {
    font-size: 1rem;
    color: var(--dark-color);
    background: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.results-count span {
    font-weight: 700;
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.75rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: var(--dark-color);
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1rem;
}


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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-meta {
    margin-bottom: 0.5rem;
}

.product-category {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: #999;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-section {
    padding: 3rem 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 0.75rem;
}

.cta-section p {
    font-size: 1rem;
    opacity: 0.95;
}

.cta-section .btn-light {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: var(--transition);
}

.cta-section .btn-light:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.footer-corporate-links a {
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-corporate-links a:hover {
    color: white !important;
    transform: translateX(3px);
}

.payment-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-logo {
    background: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: var(--transition);
    opacity: 0.95;
}

.payment-logo:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

@media (max-width: 991px) {
    .footer-corporate-links {
        display: flex;
        flex-direction: column;
    }
    
    .payment-logos {
        justify-content: center;
    }
    
    .gyg-page-title {
        font-size: 1.5rem;
    }
    
    .gyg-meta-header {
        font-size: 0.85rem;
    }
    
    .gyg-action-btns span {
        display: none;
    }
    
    .gyg-icon-btn {
        padding: 0.5rem;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        justify-content: center;
    }
    
    .gyg-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 125px;
        height: auto;
    }
    
    .gyg-gallery-main {
        grid-column: span 2;
        grid-row: 1;
    }
    
    .sticky-booking-panel {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
}

.gyg-page {
    background: #fff;
    padding: 1.5rem 0 3rem;
}

.gyg-breadcrumb {
    font-size: 0.875rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.gyg-breadcrumb a {
    color: #0052cc;
    text-decoration: none;
}

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

.gyg-breadcrumb i {
    font-size: 0.65rem;
    color: #999;
}

.gyg-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gyg-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.gyg-badge {
    background: #1a2b49;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.gyg-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.gyg-rating i {
    color: #FFC107;
    font-size: 1.1rem;
}

.gyg-rating strong {
    color: #1a1a1a;
    font-size: 1rem;
}

.gyg-rating a {
    color: #666;
    text-decoration: underline;
}

.gyg-rating a:hover {
    color: #0052cc;
}

.gyg-actions {
    display: flex;
    gap: 0.75rem;
    margin-left: auto;
}

.gyg-btn-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.gyg-btn-action:hover {
    border-color: #0052cc;
    background: #f8f9fa;
}

.gyg-wishlist.active {
    border-color: #e74c3c;
    background: #ffe5e5;
}

.gyg-wishlist.active i {
    color: #e74c3c;
}

.gyg-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
    height: 450px;
    margin: 1.5rem 0;
    border-radius: 16px;
    overflow: hidden;
}

.gyg-img-main {
    position: relative;
    overflow: hidden;
}

.gyg-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gyg-img-side {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gyg-img-small {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.gyg-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gyg-more {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
}

.gyg-more i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.action-buttons {
    display: flex;
    gap: 0.75rem;
    margin-left: auto;
}

.btn-icon-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-icon-action:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.btn-icon-action i {
    color: #666;
    transition: var(--transition);
}

.btn-icon-action:hover i {
    color: white;
}

.btn-icon-action.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-icon-action.active i {
    color: white;
}

.gyg-action-btns {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gyg-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gyg-icon-btn:hover {
    border-color: #0052cc;
    background: #f8f9fa;
}

.gyg-icon-btn i {
    font-size: 1.1rem;
}

.gyg-wishlist-btn.active {
    border-color: #e74c3c;
    background: #ffe5e5;
}

.gyg-wishlist-btn.active i {
    color: #e74c3c;
}

.gyg-gallery-container {
    margin: 1.5rem 0 2rem;
}

.gyg-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
}

.gyg-gallery-main {
    position: relative;
    grid-row: span 2;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gyg-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.gyg-gallery-thumb {
    position: relative;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gyg-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.gyg-more-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
}

.gyg-more-images i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.5rem;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.gallery-main {
    border-radius: 12px 0 0 12px;
    overflow: hidden;
}

.gallery-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: var(--transition);
}

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

.gallery-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    height: 100%;
}

.gallery-thumb:first-of-type {
    border-radius: 0 12px 0 0;
}

.gallery-thumb:last-of-type {
    border-radius: 0 0 12px 0;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    cursor: pointer;
    display: block;
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

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

.more-images-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.more-images-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.sticky-booking-panel {
    position: sticky;
    top: 90px;
}

.booking-card-gyg {
    background: white;
    border: 3px solid #0052cc;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0,82,204,0.12);
}

.gyg-price-header {
    text-align: left;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 1.5rem;
}

.price-from {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.price-old {
    font-size: 0.95rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.price-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d32f2f;
    line-height: 1;
}

.price-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
}

.price-per {
    font-size: 0.9rem;
    color: #333;
}

.gyg-reservation-form {
    margin-bottom: 1.5rem;
}

.gyg-form-field {
    margin-bottom: 0.75rem;
    position: relative;
}

.field-header {
    background: #f5f5f5;
    border: 2px solid #d0d0d0;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.gyg-form-field.active .field-header,
.field-header:hover {
    border-color: #0052cc;
    background: white;
}

.field-icon {
    color: #333;
    font-size: 1.25rem;
    width: 24px;
}

.field-content {
    flex: 1;
}

.field-label {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.15rem;
    font-weight: 600;
}

.field-value {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.field-arrow {
    color: #666;
    transition: transform 0.3s ease;
}

.gyg-form-field.active .field-arrow {
    transform: rotate(180deg);
}

.field-dropdown {
    display: none;
    background: white;
    border: 2px solid #0052cc;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 1rem;
    margin-top: -2px;
}

.gyg-form-field.active .field-dropdown {
    display: block;
}

.participant-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.participant-title {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.participant-age {
    font-size: 0.85rem;
    color: #666;
}

.participant-counter {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.counter-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #0052cc;
    background: white;
    color: #0052cc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.counter-btn:hover {
    background: #0052cc;
    color: white;
}

.counter-value {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.btn-gyg-reserve {
    width: 100%;
    background: #0052cc;
    color: white;
    border: none;
    padding: 1.1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.btn-gyg-reserve:hover {
    background: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,82,204,0.3);
}

.gyg-features {
    margin-top: 1.5rem;
}

.gyg-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.gyg-feature-item i {
    color: #0ca678;
    font-size: 1.1rem;
}

.gyg-feature-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.feature-link {
    color: #0052cc;
    text-decoration: underline;
}

.feature-link:hover {
    color: #003d99;
}

.btn-icon-action.btn-wishlist.active i {
    color: #e74c3c;
}

.btn-icon-action.btn-wishlist:hover i {
    color: white;
}

.btn-icon-action.btn-wishlist.active {
    background: white;
    border-color: #e74c3c;
}

.btn-icon-action.btn-wishlist.active:hover {
    background: #e74c3c;
    border-color: #e74c3c;
}

@media (max-width: 991px) {
    .product-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 125px;
        gap: 0.5rem;
        height: auto;
    }
    
    .gallery-main {
        grid-column: 1 / 3;
        grid-row: 1;
        border-radius: 12px 12px 0 0;
    }
    
    .gallery-thumb:first-of-type {
        border-radius: 0 0 0 12px;
    }
    
    .gallery-thumb:last-of-type {
        border-radius: 0 0 12px 0;
    }
    
    .action-buttons {
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
    }
    
    .sticky-booking-panel {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
    
    .product-main-title {
        font-size: 1.35rem;
    }
    
    .product-meta-row {
        gap: 0.75rem;
        font-size: 0.9rem;
    }
    
    .badge-featured {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
    
    .booking-card-gyg {
        padding: 1.25rem;
    }
    
    .price-number {
        font-size: 2rem;
    }
    
    .price-symbol {
        font-size: 1.25rem;
    }
}

.footer {
    background: #1a1a1a;
    position: relative;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: center;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
    }
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

@media (max-width: 1200px) {
    .navbar-menu {
        gap: 0.25rem;
    }
    
    .menu-item a {
        padding: 0.65rem 0.9rem;
        font-size: 0.875rem;
    }
    
    .submenu {
        min-width: 200px;
    }
    
    .submenu li a {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-item {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 992px) {
    body {
        padding-top: 110px;
    }
    
    .navbar-menu-section,
    .navbar-selectors {
        display: none !important;
    }
    
    .submenu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-wrapper {
        gap: 1rem;
    }
    
    .navbar-actions-section {
        gap: 0.75rem;
    }
    
    .btn-rezervasyon span {
        display: none;
    }
    
    .btn-rezervasyon {
        padding: 0.65rem 1rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 200px;
    }
    
    .search-card-advanced {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-nav {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .container,
    .container-fluid {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .top-bar {
        padding: 0.4rem 0;
        width: 100%;
    }
    
    .top-bar .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .top-bar-left,
    .top-bar-right {
        gap: 1rem;
    }
    
    .top-bar-item i {
        font-size: 1.1rem;
    }
    
    .top-bar-item span {
        display: none;
    }
    
    .top-bar-item.btn-login {
        padding: 0.45rem 0.9rem;
    }
    
    .top-bar-item.btn-login i {
        font-size: 1.2rem;
    }
    
    .main-navbar {
        top: 0;
        padding: 0.5rem 0;
        width: 100%;
    }
    
    .main-navbar .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .navbar-brand-logo img {
        height: 36px;
    }
    
    .navbar-wrapper {
        gap: 0.5rem;
    }
    
    .navbar-actions-section {
        margin-left: auto;
        gap: 0.75rem;
    }
    
    .btn-rezervasyon {
        padding: 0.7rem 0.95rem;
    }
    
    .btn-rezervasyon i {
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle {
        padding: 0.4rem;
    }
    
    .mobile-menu-toggle span {
        width: 28px;
        height: 3px;
    }
    
    .heroSwiper {
        height: 450px;
    }
    
    .hero-content {
        padding: 1.5rem 0;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }
    
    .features-section {
        display: none;
    }
    
    .module-section,
    .cta-section {
        overflow-x: hidden;
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 1rem;
    }
    
    .section-header-flex {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .results-count {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .module-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .module-card {
        height: 200px;
    }
    
    .module-card-overlay {
        padding: 0.85rem;
    }
    
    .module-card-location {
        top: 0.65rem;
        left: 0.65rem;
        padding: 0.25rem 0.65rem;
        font-size: 0.65rem;
    }
    
    .module-card-title {
        font-size: 0.85rem;
        margin-bottom: 0.35rem;
    }
    
    .module-card-price {
        margin-bottom: 0.35rem;
    }
    
    .module-card-price .price-value {
        font-size: 1.1rem;
    }
    
    .module-card-price .price-label {
        font-size: 0.75rem;
    }
    
    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .discover-card {
        height: 200px;
    }
    
    .discover-card-overlay {
        padding: 0.85rem;
    }
    
    .discover-card-type {
        padding: 0.25rem 0.65rem;
        font-size: 0.65rem;
    }
    
    .discover-card-title {
        font-size: 0.85rem;
    }
}


/* Blog Section */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    padding-top: 66.67%;
}

.blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--secondary-color);
    gap: 0.5rem;
}

/* Module List & Detail Styles */
.hero-section-list {
    position: relative;
    background: var(--primary-color) !important;
    padding: 80px 0;
    margin-bottom: 0;
    overflow: hidden;
    min-height: 300px;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    z-index: 1;
}

.hero-section-list .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-section-list .h-100 {
    height: 100% !important;
}

.hero-section-list .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white !important;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section-list .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9) !important;
}

.products-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.filter-actions {
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.results-count {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 500;
}

.results-count span {
    font-weight: 700;
    color: var(--primary-color);
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .module-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.65rem !important;
    }
}

@media (max-width: 767px) {
    .module-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
    
    .module-card {
        height: 200px !important;
    }
    
    .module-card-title {
        font-size: 0.85rem !important;
    }
    
    .module-card-location {
        font-size: 0.65rem !important;
        padding: 0.25rem 0.5rem !important;
    }
    
    .module-card-price .price-value {
        font-size: 1rem !important;
    }
}

.module-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.module-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.module-card-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.module-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.module-card:hover .module-card-image img {
    transform: scale(1.12) rotate(1deg);
}

.module-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(0,0,0,0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    color: white;
    transition: background 0.3s ease;
}

.module-card:hover .module-card-overlay {
    background: linear-gradient(to bottom, transparent 0%, transparent 30%, rgba(0,0,0,0.5) 100%);
}

.module-card-location {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255,255,255,0.95);
    color: var(--primary-color);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.module-card:hover .module-card-location {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.module-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: white;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.module-card:hover .module-card-title {
    transform: translateY(-3px);
}

.module-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.module-card-price .price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.5);
}

.module-card-price .price-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn-view-all:hover {
    background: white;
    color: var(--primary-color);
}

.btn-view-all-alt {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.5rem;
}

.btn-view-all-alt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.btn-view-all-alt:hover {
    color: var(--secondary-color);
}

.btn-view-all-alt:hover::after {
    background: var(--secondary-color);
    height: 3px;
}

.discover-section {
    padding: 2.5rem 0;
    background: white;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .discover-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.65rem !important;
    }
}

@media (max-width: 767px) {
    .discover-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
    
    .discover-card {
        height: 200px !important;
    }
    
    .discover-card-title {
        font-size: 0.85rem !important;
    }
    
    .discover-card-meta {
        font-size: 0.7rem !important;
    }
}

.discover-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.discover-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.discover-card-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.discover-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.discover-card:hover .discover-card-image img {
    transform: scale(1.12) rotate(1deg);
}

.discover-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(0,0,0,0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    color: white;
    transition: background 0.3s ease;
}

.discover-card:hover .discover-card-overlay {
    background: linear-gradient(to bottom, transparent 0%, transparent 30%, rgba(0,0,0,0.5) 100%);
}

.discover-card-type {
    background: rgba(255,255,255,0.95);
    color: var(--primary-color);
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: fit-content;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.discover-card:hover .discover-card-type {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.discover-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0.5rem 0 0 0;
    color: white;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.discover-card:hover .discover-card-title {
    transform: translateY(-3px);
}


.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.product-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 1rem;
}

.product-gallery {
    margin-bottom: 2rem;
}

.main-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.thumb-image {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    height: 100px;
}

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

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

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.description-content {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.description-content p {
    margin-bottom: 1rem;
}

.include-item,
.exclude-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.include-item i {
    color: #28a745;
    font-size: 1.25rem;
    margin-top: 2px;
}

.exclude-item i {
    color: #dc3545;
    font-size: 1.25rem;
    margin-top: 2px;
}

.product-sidebar {
    position: sticky;
    top: 100px;
}

.price-card {
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.price-display {
    text-align: center;
    padding: 1.5rem;
}

.price-display .price-label {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-display .price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-display .currency {
    font-size: 1.75rem;
}

.contact-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    color: var(--dark-color);
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

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

.contact-item i {
    font-size: 1.25rem;
    width: 30px;
    text-align: center;
}

.contact-item:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

@media (max-width: 992px) {
    .product-sidebar {
        position: relative !important;
        top: 0 !important;
        margin-top: 30px;
    }
}

/* Product Hero Section */
.product-hero-section {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    margin-top: 20px;
}

.product-badges .badge-category {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.product-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
}

.product-rating .stars {
    color: #FFA500;
    font-size: 1.1rem;
}

.product-rating .rating-text {
    color: #666;
    font-size: 1rem;
}

.price-hero {
    text-align: right;
}

.price-hero .price-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 5px;
}

.price-hero .price-value {
    font-size: 3rem;
    font-weight: 700;
    color: #8B4513;
    line-height: 1;
}

.price-hero .currency {
    font-size: 2rem;
}

.price-hero .price-unit-text {
    font-size: 1rem;
    color: #666;
    margin-top: 8px;
    font-weight: 500;
}

.product-quick-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-content .info-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content .info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* Utility Classes */
.mt-30 {
    margin-top: 30px;
}

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

.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.rounded-200 {
    border-radius: 200px;
}

.lh-16 {
    line-height: 1.6;
}

/* Tour Gallery Grid */
.tourSingleGrid.-type-1 {
    overflow: hidden;
    position: relative;
}

.tourSingleGrid.-type-1 .tourSingleGrid__grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 770px 250px 250px;
    grid-template-rows: 250px 250px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.tourSingleGrid.-type-1 .tourSingleGrid__grid > *:nth-child(1) {
    grid-row: 2 span;
}

.tourSingleGrid.-type-1 .tourSingleGrid__grid > *:nth-child(2) {
    grid-column: 2 span;
}

.tourSingleGrid.-type-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.tourSingleGrid.-type-1 .tourSingleGrid__button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.button.-accent-1 {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s;
}

.button.-accent-1 {
    cursor: pointer;
    position: relative;
    z-index: 1000;
    display: inline-block;
}

.button.-accent-1 span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 200px;
    background: rgba(40, 40, 40, 0.95) !important;
    color: white !important;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 6px 25px rgba(0,0,0,0.6) !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.4);
    position: relative;
    z-index: 1000;
}

.button.-accent-1:hover span {
    background: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.3) !important;
    border-color: rgba(255,255,255,0.6);
}

.js-gallery {
    display: none;
}

.js-gallery:first-child {
    display: inline-block;
}

.gallery-single {
    border-radius: 12px;
    overflow: hidden;
}

.gallery-single img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

/* Content Styles */
.content-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.content-title i {
    color: var(--primary-color);
}

/* Package Features */
.package-features {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.25rem;
}

.feature-title {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.feature-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* Description Box */
.product-description-box {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.description-text {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.description-text p {
    margin-bottom: 1rem;
}

/* Program Timeline */
.program-section {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.program-timeline {
    position: relative;
    padding-left: 40px;
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item:last-child .timeline-marker::before {
    display: none;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
}

.timeline-marker::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 30px;
    width: 2px;
    height: calc(100% + 40px);
    background: var(--primary-color);
}

.timeline-dot {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.timeline-text {
    color: #666;
    line-height: 1.7;
}

/* Package Includes */
.package-includes-section {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.excludes-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.includes-box,
.excludes-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.include-item-new,
.exclude-item-new {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.include-item-new:last-child,
.exclude-item-new:last-child {
    border-bottom: none;
}

.include-item-new i {
    color: #28a745;
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.exclude-item-new i {
    color: #dc3545;
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.include-item-new span,
.exclude-item-new span {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

/* Booking Sidebar */
.booking-sidebar {
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

.booking-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

.booking-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.date-picker-wrapper .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
}

.date-picker-wrapper .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139,69,19,0.15);
}

.booking-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.summary-label {
    font-size: 1rem;
    color: #666;
}

.summary-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.summary-note {
    font-size: 0.875rem;
    color: #999;
    text-align: center;
}

.btn-booking {
    background: var(--primary-color) !important;
    border: none !important;
    padding: 15px 30px !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    transition: all 0.3s !important;
    color: white !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    width: 100% !important;
}

.btn-booking:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2) !important;
    color: white !important;
}

.booking-features {
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #666;
}

.booking-feature i {
    font-size: 1.125rem;
}

.contact-sidebar-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 25px;
}

.contact-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-card-text {
    color: #666;
    margin-bottom: 20px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark-color);
    margin-bottom: 10px;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.contact-btn i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.contact-btn:hover i {
    color: white;
}

/* Biletler Section */
.biletler-wrapper {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.biletler-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

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

.bilet-info {
    flex: 1;
}

.bilet-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.bilet-date {
    font-size: 0.875rem;
    color: #999;
}

.bilet-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
}

.qty-input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    background: white;
}

/* Extras Section */
.extras-wrapper {
    padding: 20px;
    background: #fff3e0;
    border-radius: 12px;
    border: 2px dashed #ff9800;
}

.extras-title {
    font-size: 1rem;
    font-weight: 700;
    color: #e65100;
    margin-bottom: 12px;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #333;
}

.extra-item i {
    font-size: 1.125rem;
}

/* Note Wrapper */
.note-wrapper {
    margin-top: 15px;
}

.note-wrapper textarea {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px;
    font-size: 0.95rem;
    resize: vertical;
}

.note-wrapper textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139,69,19,0.15);
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #fff;
}

.faq-question.active {
    background: var(--primary-color);
    color: white;
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s;
}

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

.faq-answer {
    padding: 0 20px;
    background: white;
}

.faq-answer.show {
    padding: 20px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: #666;
}

@media (max-width: 1200px) {
    .tourSingleGrid.-type-1 .tourSingleGrid__grid {
        grid-template-columns: 600px 200px 200px;
    }
}

@media (max-width: 992px) {
    .booking-sidebar {
        position: relative !important;
        top: 0 !important;
        margin-top: 40px;
    }
    
    .tourSingleGrid.-type-1 .tourSingleGrid__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 150px;
    }
    
    .tourSingleGrid.-type-1 .tourSingleGrid__grid > *:nth-child(2) {
        grid-column: 1 span;
    }
}

@media (max-width: 767px) {
    .tourSingleGrid.-type-1 .tourSingleGrid__grid {
        overflow-x: scroll;
        display: flex;
        grid-template-columns: none;
        grid-template-rows: none;
    }
    
    .tourSingleGrid.-type-1 .tourSingleGrid__grid > *:nth-child(1) {
        grid-row: auto;
    }
    
    .tourSingleGrid.-type-1 .tourSingleGrid__grid > *:nth-child(2) {
        grid-column: auto;
    }
    
    .tourSingleGrid.-type-1 img {
        width: calc(100% - 40px);
        height: auto;
        min-width: 280px;
        border-radius: 12px;
        flex-shrink: 0;
    }
    
    .tourSingleGrid.-type-1 .tourSingleGrid__button {
        bottom: 15px;
        right: 15px;
    }
    
    .button.-accent-1 span {
        padding: 8px 16px;
        font-size: 0.875rem;
    }
}

/* Flatpickr Custom Styles */
.flatpickr-calendar {
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border-radius: 12px;
    border: none;
}

.flatpickr-day.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.flatpickr-day.today {
    border-color: var(--primary-color);
}

.flatpickr-day:hover {
    background: rgba(139, 69, 19, 0.1);
    border-color: var(--primary-color);
}

.flatpickr-months .flatpickr-month {
    background: var(--primary-color);
    color: white;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: transparent;
    color: white;
}

.flatpickr-weekdays {
    background: #f8f9fa;
}

#tourDate {
    cursor: pointer;
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238B4513' class='bi bi-calendar3' viewBox='0 0 16 16'%3E%3Cpath d='M14 0H2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zM1 3.857C1 3.384 1.448 3 2 3h12c.552 0 1 .384 1 .857v10.286c0 .473-.448.857-1 .857H2c-.552 0-1-.384-1-.857V3.857z'/%3E%3Cpath d='M6.5 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm-9 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm-9 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.date-picker-wrapper .form-label {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}

.date-picker-wrapper .form-label i {
    color: var(--primary-color);
}

/* Form Button Fix */
button[type="submit"].btn-booking,
.btn.btn-primary.btn-booking {
    background: var(--primary-color) !important;
    border: none !important;
    color: white !important;
    padding: 15px 30px !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    visibility: visible !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(139,69,19,0.3) !important;
}

button[type="submit"].btn-booking:hover,
.btn.btn-primary.btn-booking:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
}

@media (max-width: 768px) {
    .hero-section-list .hero-title {
        font-size: 2rem;
    }
    
    .hero-section-list .hero-subtitle {
        font-size: 1rem;
    }
    
    .product-hero-title {
        font-size: 1.5rem;
    }
    
    .price-hero {
        text-align: left;
        margin-top: 20px;
    }
    
    .price-hero .price-value {
        font-size: 2rem;
    }
    
    .product-quick-info .row {
        flex-direction: column;
    }
    
    .info-item {
        padding: 10px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 200px;
    }
    
    .gallery-single img {
        max-height: 300px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .bilet-name {
        font-size: 0.95rem;
    }
}

.search-filters {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.filter-item i {
    font-size: 1.1rem;
}

.filter-item strong {
    color: var(--dark-color);
    margin-right: 5px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-item {
    width: 100%;
}

@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .search-filters {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.navbar-auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-auth-login,
.btn-auth-register {
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.btn-auth-login {
    color: var(--dark-color);
    background: white;
    border: 2px solid #e0e0e0;
}

.btn-auth-login:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-auth-register {
    background: var(--primary-color);
    color: white;
    border: none;
}

.btn-auth-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139,69,19,0.3);
}

@media (max-width: 1200px) {
    .navbar-auth-buttons {
        display: none;
    }
}

.mobile-menu-footer .btn-outline-danger {
    border-color: #dc3545;
    color: #dc3545;
}

.mobile-menu-footer .btn-outline-danger:hover {
    background-color: #dc3545;
    color: white;
}

.mobile-menu-footer .btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
}

.mobile-menu-footer .btn-outline-secondary:hover {
    background-color: #6c757d;
    color: white;
}
