/*
 * Rhodes Sea Lines - Adventure Tours Template Styles
 * 
 * @package Rhodes_Sea_Lines
 * @since 1.0.0
 */

/* ============================================
   ADVENTURE TOURS GLOBAL STYLES
   ============================================ */

.adventure-tours-template {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background: #2c3e50;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left .site-tagline {
    font-weight: 600;
}

.top-bar-center {
    display: flex;
    gap: 30px;
}

.top-phone, .top-hours {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-buy-now {
    background: #27ae60;
    color: #fff;
    padding: 8px 20px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-buy-now:hover {
    background: #229954;
    color: #fff;
}

.search-toggle {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
}

/* ============================================
   ADVENTURE HEADER
   ============================================ */

.adventure-header {
    background: #34495e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.adventure-header .site-title a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
}

.logo-icon {
    font-size: 32px;
}

.adventure-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.adventure-nav ul li a {
    color: #fff;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: background 0.3s ease;
}

.adventure-nav ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #fff;
    contain: layout style paint;
    content-visibility: auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.btn-hero {
    background: #3498db;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #2980b9;
    transform: translateY(-2px);
    color: #fff;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-us-section {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    margin: 0;
}

.why-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 20px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-desc {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 14px;
}

/* Search Sidebar */
.search-sidebar {
    background: #fff;
    border: 2px solid #e8e8e8;
    padding: 30px;
    border-radius: 5px;
    height: fit-content;
}

.search-widget .widget-title {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.search-widget .widget-subtitle {
    color: #7f8c8d;
    margin-bottom: 25px;
}

.tour-search-form .form-field {
    margin-bottom: 15px;
}

.tour-search-form input[type="text"],
.tour-search-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

.btn-find-tours {
    width: 100%;
    background: #3498db;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-find-tours:hover {
    background: #2980b9;
}

/* ============================================
   POPULAR TOURS SECTION
   ============================================ */

.popular-tours-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #e8f4f8 0%, #fff 100%);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-image {
    position: relative;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.badge-special-offer {
    position: absolute;
    top: 15px;
    right: -35px;
    background: #e91e63;
    color: #fff;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
}

.tour-content {
    padding: 20px;
}

.tour-rating {
    margin-bottom: 10px;
}

.tour-rating .star {
    color: #ddd;
    font-size: 18px;
}

.tour-rating .star.filled {
    color: #f1c40f;
}

.tour-price {
    margin-bottom: 15px;
}

.tour-price .old-price {
    text-decoration: line-through;
    color: #95a5a6;
    margin-right: 10px;
    font-size: 14px;
}

.tour-price .current-price {
    color: #e74c3c;
    font-size: 24px;
    font-weight: 700;
}

.tour-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.tour-title a {
    color: #2c3e50;
    text-decoration: none;
}

.tour-title a:hover {
    color: #3498db;
}

.tour-excerpt {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tour-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #7f8c8d;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============================================
   DEALS AND DISCOUNTS SECTION
   ============================================ */

.deals-section {
    padding: 80px 0;
    background: #fff;
}

.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header-inline .section-title {
    font-size: 32px;
    margin-bottom: 5px;
}

.section-desc {
    color: #7f8c8d;
}

.btn-view-more {
    background: #3498db;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.btn-view-more:hover {
    background: #2980b9;
    color: #fff;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.deal-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.deal-image {
    position: relative;
}

.deal-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.badge-discount {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(231, 76, 60, 0.95);
    color: #fff;
    padding: 10px 15px;
    border-radius: 3px;
    font-size: 12px;
    text-align: center;
}

.badge-discount strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.deal-content {
    padding: 20px;
}

.deal-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.deal-title a {
    color: #2c3e50;
    text-decoration: none;
}

.deal-price {
    font-size: 20px;
    font-weight: 700;
}

/* ============================================
   DESTINATIONS SECTION
   ============================================ */

.destinations-section {
    padding: 80px 0;
    background: #fff;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.destination-card {
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.destination-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-image {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
    text-align: center;
}

.destination-name {
    color: #fff;
    font-size: 20px;
    margin: 0 0 5px;
}

.tour-count {
    color: #fff;
    font-size: 14px;
}

/* ============================================
   TOUR TYPES SECTION
   ============================================ */

.tour-types-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #34495e 0%, #2c3e50 100%);
    color: #fff;
}

.tour-types-section .section-title {
    color: #fff;
}

.tour-types-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.tour-type-item {
    text-align: center;
}

.type-link {
    text-decoration: none;
    display: block;
}

.type-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 15px;
    transition: transform 0.3s ease;
}

.tour-type-item:hover .type-icon {
    transform: translateY(-5px);
}

.type-name {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* ============================================
   BLOG AND REVIEWS SECTION
   ============================================ */

.blog-reviews-section {
    padding: 80px 0;
    background: #fff;
}

.blog-reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.blog-card, .review-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-title a {
    color: #2c3e50;
    text-decoration: none;
}

.blog-excerpt {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-read-more {
    background: #3498db;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 3px;
    display: inline-block;
    font-weight: 600;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    padding: 20px;
}

.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.2;
    color: #1a202c;
}

.review-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #e8f4f8 0%, #d4ebf2 100%);
    text-align: center;
}

.newsletter-title {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.newsletter-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 16px;
}

.btn-subscribe {
    background: #27ae60;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-subscribe:hover {
    background: #229954;
}

/* ============================================
   ADVENTURE FOOTER
   ============================================ */

.adventure-footer {
    background: #2c3e50;
    color: #ecf0f1;
}

.footer-widgets {
    padding: 60px 0;
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-widget .widget-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-widget p {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
}

.award-badge {
    display: inline-block;
    background: rgba(52, 152, 219, 0.1);
    padding: 8px 15px;
    border-radius: 3px;
    margin-top: 15px;
    font-size: 14px;
}

.mini-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.mini-post-thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 3px;
}

.mini-post-content h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.mini-post-content h4 a {
    color: #ecf0f1;
    text-decoration: none;
}

.mini-post-content h4 a:hover {
    color: #3498db;
}

.post-date {
    font-size: 12px;
    color: #95a5a6;
}

.contact-info {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    background: #1a252f;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin: 0;
    font-size: 14px;
    color: #95a5a6;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-links a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

/* ============================================
   SINGLE TOUR PAGE STYLES
   ============================================ */

/* Tour Hero Section */
.tour-hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding: 60px 0 40px;
}

.tour-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.tour-hero-overlay .container {
    position: relative;
    z-index: 1;
}

.tour-breadcrumbs {
    color: #fff;
    font-size: 14px;
    margin-bottom: 20px;
}

.tour-breadcrumbs a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.tour-breadcrumbs a:hover {
    opacity: 0.8;
}

.breadcrumb-separator {
    margin: 0 8px;
    opacity: 0.7;
}

.breadcrumb-current {
    opacity: 0.9;
}

.tour-hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Tour Content Wrapper */
.tour-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    padding: 40px 0;
    background: #f5f5f5;
}

.tour-main-content {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
}

/* Tab Navigation */
.tour-tabs-nav {
    display: flex;
    border-bottom: 2px solid #3498db;
    margin-bottom: 0;
    overflow: visible;
    background: #fff;
    padding: 0;
    width: 100%;
}

.tour-tab-btn {
    background: #fff;
    border: none;
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
    margin-bottom: -2px;
    font-family: inherit;
    flex: 1;
    text-align: center;
    border-radius: 0;
}

.tour-tab-btn:hover {
    color: #3498db;
    background: #f8f9fa;
}

.tour-tab-btn.active {
    color: #fff;
    background: #3498db;
    border-bottom: none;
}

.tour-tab-btn.active:hover {
    background: #2980b9;
    color: #fff;
}

.tour-tab-btn:focus {
    outline: 2px solid #3498db;
    outline-offset: -2px;
    outline-width: 2px;
}

/* Tab Content */
.tour-tabs-content {
    min-height: 400px;
    background: #fff;
    padding: 30px 0;
}

.tour-tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tour-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Details Tab */
.tour-details-content {
    line-height: 1.8;
}

.tour-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tour-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.tour-info-item .info-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.tour-info-item .info-content strong {
    display: block;
    margin-bottom: 5px;
    color: #34495e;
    font-size: 14px;
}

.tour-info-item .info-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.tour-additional-details {
    margin-top: 40px;
}

.details-section {
    margin-bottom: 30px;
}

.details-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #34495e;
}

.details-section .details-content {
    line-height: 1.8;
    color: #555;
}

.tour-empty-message {
    padding: 40px;
    text-align: center;
    color: #999;
    font-style: italic;
}

/* Itinerary Tab */
.itinerary-timeline {
    position: relative;
    padding-left: 40px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.itinerary-item {
    position: relative;
    margin-bottom: 30px;
}

.itinerary-marker {
    position: absolute;
    left: -32px;
    top: 0;
    width: 30px;
    height: 30px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.itinerary-marker .marker-number {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.itinerary-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-left: 20px;
}

.itinerary-time {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.itinerary-title {
    font-size: 18px;
    margin: 10px 0;
    color: #34495e;
}

.itinerary-description {
    color: #555;
    line-height: 1.8;
}

/* Location Tab */
.tour-location-content {
    line-height: 1.8;
}

.location-info {
    margin-bottom: 30px;
}

.location-address {
    margin-bottom: 20px;
}

.location-address h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

.location-address p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 16px;
}

.location-description {
    color: #555;
    margin-top: 20px;
}

.tour-map-container {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tour-map {
    width: 100%;
    height: 400px;
    min-height: 300px;
}

.tour-map-placeholder {
    padding: 60px 20px;
    text-align: center;
    background: #f8f9fa;
    color: #666;
}

.map-coordinates {
    margin-top: 10px;
    font-family: monospace;
    color: #999;
}

.location-coordinates {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-family: monospace;
    color: #666;
}

/* Photos Tab */
.tour-photos-content {
    line-height: 0;
}

.tour-photo-main {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tour-photo-main img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tour-photo-main img:hover {
    transform: scale(1.02);
}

.tour-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.tour-photo-thumb {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tour-photo-thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.tour-photo-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

/* Lightbox */
.tour-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tour-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.tour-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    border-radius: 8px;
}

.tour-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.tour-lightbox-close:hover {
    background: #f0f0f0;
}

/* Price Box */
.tour-price-box {
    position: sticky;
    top: 20px;
    height: fit-content;
    background: #e8f4f8;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.price-box-content {
    text-align: center;
}

.price-box-icon {
    margin-bottom: 20px;
    color: #3498db;
}

.price-box-price {
    margin-bottom: 15px;
}

.price-old {
    display: block;
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-current {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #34495e;
}

.price-box-note {
    color: #666;
    font-size: 14px;
    margin: 15px 0;
}

.price-box-meta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #d0e8f0;
}

.price-meta-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #555;
    font-size: 14px;
}

.price-box-rating {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.price-box-rating .star {
    font-size: 18px;
    color: #ddd;
}

.price-box-rating .star.filled {
    color: #f39c12;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .features-grid,
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .deals-grid,
    .destinations-grid,
    .tour-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-widgets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .adventure-nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .features-grid,
    .tours-grid,
    .deals-grid,
    .destinations-grid,
    .tour-types-grid,
    .blog-reviews-grid,
    .footer-widgets-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .section-header-inline {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* Tour Page Mobile Styles */
    .tour-hero-title {
        font-size: 32px;
    }
    
    .tour-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 0;
    }
    
    .tour-price-box {
        position: static;
        order: -1;
    }
    
    .tour-tabs-nav {
        flex-wrap: nowrap;
        overflow: visible;
        margin: 0;
        padding: 0;
    }
    
    .tour-tab-btn {
        padding: 15px 10px;
        font-size: 12px;
        flex: 1;
        min-width: 0;
    }
    
    .tour-tabs-content {
        padding: 20px 0;
    }
    
    .tour-info-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tour-map {
        height: 300px;
    }
    
    .itinerary-timeline {
        padding-left: 30px;
    }
    
    .itinerary-marker {
        left: -22px;
        width: 24px;
        height: 24px;
    }
    
    .itinerary-content {
        margin-left: 10px;
    }
}


