/* Virtual Tours Hero */
.virtual-hero {
    position: relative;
    height: 300px;
    background: linear-gradient(rgba(30, 41, 59, 0.85), rgba(30, 41, 59, 0.9)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.virtual-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.virtual-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.virtual-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--rounded-md);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background-color: #0f766e;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Tours Filter */
.tours-filter {
    background-color: var(--dark-gray);
    padding: 25px;
    border-radius: var(--rounded-md);
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-header h2 {
    color: var(--dark);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s ease;
}

.filter-group select, .filter-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--rounded-sm);
    background: var(--darker-gray);
    transition: all 0.3s ease;
    color: var(--dark);
}

.filter-group select:focus, .filter-group input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.filter-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.filter-reset {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

/* Virtual Tours Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tour-card {
    background: var(--dark-gray);
    border-radius: var(--rounded-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

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

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

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

.tour-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
    color: white;
    z-index: 1;
}

.tour-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.tour-overlay .location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.tour-content {
    padding: 20px;
}

.tour-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
    transition: border-color 0.3s ease;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.tour-description {
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tour-category {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--dark-gray);
    color: var(--dark);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tour-actions {
    display: flex;
    gap: 10px;
}

.tour-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--dark-gray);
    color: var(--dark);
    text-decoration: none;
    border-radius: var(--rounded-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tour-button:hover {
    background-color: var(--primary);
    color: white;
}

.tour-button.primary {
    background-color: var(--primary);
    color: white;
}

.tour-button.primary:hover {
    background-color: var(--primary-light);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
}

.pagination a:hover, .pagination .current {
    background-color: var(--primary);
    color: white;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--light);
    text-align: center;
    transition: background-color 0.3s ease;
}

.how-it-works .section-title h2 {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.how-it-works .section-title p {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px;
    transition: color 0.3s ease;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: var(--dark-gray);
    border-radius: var(--rounded-md);
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.step-card h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.step-card p {
    color: var(--gray);
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Virtual CTA Section */
.virtual-cta {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    color: white;
    margin: 80px 0;
    border-radius: var(--rounded-lg);
    position: relative;
    overflow: hidden;
}

.virtual-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover;
    opacity: 0.1;
}

.virtual-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.virtual-cta p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
    opacity: 0.9;
}

.virtual-cta .cta-button {
    position: relative;
    background-color: white;
    color: var(--primary);
    font-size: 1.1rem;
    padding: 15px 40px;
    font-weight: 600;
}

.virtual-cta .cta-button:hover {
    background-color: var(--light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .virtual-hero {
        height: 300px;
    }
    
    .virtual-hero h1 {
        font-size: 2.2rem;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tour-image {
        height: 200px;
    }
    
    .tour-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .virtual-hero-content{
        margin-bottom: 20px;
    }
}

/* No Results Section */
.no-results-card {
    background-color: var(--dark-gray); /* Dark gray background */
    border-radius: var(--rounded-md);
    padding: 40px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    margin: 40px 0;
}

.no-results-icon {
    font-size: 3rem;
    color: var(--primary); /* Turquoise accent */
    margin-bottom: 20px;
}

.no-results-title {
    color: var(--dark); /* White text */
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.no-results-message {
    color: var(--gray); /* Light gray text */
    margin-bottom: 30px;
    font-size: 1rem;
}

.no-results-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.no-results-actions .action-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--light-gray); /* Light gray background */
    color: var(--dark); /* White text */
    text-decoration: none;
    border-radius: var(--rounded-sm);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray); /* Light gray border */
}

.no-results-actions .action-button:hover {
    background-color: var(--primary); /* Turquoise background */
    color: var(--light); /* Black text for contrast */
    border-color: var(--primary); /* Turquoise border */
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.no-results-actions .action-button.primary {
    background-color: var(--secondary); /* Secondary color */
    color: var(--light); /* Black text for contrast */
    border: 1px solid var(--secondary); /* Secondary border */
}

.no-results-actions .action-button.primary:hover {
    background-color: #0f766e; /* Darker secondary */
    color: var(--light); /* Black text for contrast */
    border-color: #0f766e; /* Darker secondary border */
}