.ektravel-nav-menu .active {
    color: var(--primary-color);
    position: relative;
}

.ektravel-nav-menu .active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.ektravel-tours-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: white;
    padding: 5rem 0;
}

.ektravel-text-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ektravel-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ektravel-mr-1 { margin-right: 0.5rem; }
.ektravel-mr-2 { margin-right: 1rem; }
.ektravel-ml-1 { margin-left: 0.5rem; }

.ektravel-hero-visual {
    width: 100%;
}


.ektravel-filter-section {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.ektravel-filter-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.ektravel-filter-group {
    display: flex;
    flex-direction: column;
}

.ektravel-filter-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.ektravel-filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ektravel-filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.ektravel-filter-btn {
    height: fit-content;
    align-self: end;
}

.ektravel-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ektravel-tour-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

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

.ektravel-tour-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.ektravel-tour-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ektravel-tour-content {
    padding: 2rem;
}

.ektravel-tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.ektravel-tour-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ektravel-tour-details span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.ektravel-tour-details i {
    color: var(--primary-color);
}

.ektravel-tour-price {
    text-align: right;
}

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

.ektravel-price-period {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ektravel-tour-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.ektravel-tour-actions .ektravel-btn {
    flex: 1;
    text-align: center;
}

.ektravel-theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ektravel-theme-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: white;
}

.ektravel-theme-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.ektravel-theme-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-medium);
}

.ektravel-theme-highlights {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.ektravel-theme-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.ektravel-faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.ektravel-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ektravel-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.ektravel-info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.ektravel-info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ektravel-info-content {
    flex: 1;
}

.ektravel-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ektravel-faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.ektravel-faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.ektravel-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ektravel-faq-question:hover {
    background: var(--background-secondary);
}

.ektravel-faq-icon {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.ektravel-faq-item.active .ektravel-faq-icon {
    transform: rotate(180deg);
}

.ektravel-faq-answer {
    padding: 0 1.5rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.ektravel-faq-item.active .ektravel-faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.ektravel-cta-section {
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
}

.ektravel-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .ektravel-tours-hero-visual {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 2rem;
    }
    
    .ektravel-tours-hero-image {
        border-radius: 12px;
    }
    
    .ektravel-faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .ektravel-tours-hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
        min-height: 60vh;
    }
    
    .ektravel-tours-hero-visual {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 2rem;
    }
    
    .ektravel-filter-container {
        grid-template-columns: 1fr;
    }
    
    .ektravel-tours-grid {
        grid-template-columns: 1fr;
    }
    
    .ektravel-tour-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .ektravel-tour-actions {
        flex-direction: column;
    }
    
    .ektravel-theme-grid {
        grid-template-columns: 1fr;
    }
    
    .ektravel-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .ektravel-info-card {
        flex-direction: column;
        text-align: center;
    }
}

.ektravel-footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.ektravel-footer-links {
    list-style: none;
}

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

.ektravel-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ektravel-footer-links a:hover {
    color: var(--accent-color);
}

.ektravel-contact-info {
    color: rgba(255, 255, 255, 0.8);
}

.ektravel-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.ektravel-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ektravel-contact-item a:hover {
    color: var(--accent-color);
}

.ektravel-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.ektravel-footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ektravel-footer-bottom a:hover {
    color: var(--accent-color);
}

.ektravel-tours-hero .ektravel-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.ektravel-tours-hero .ektravel-btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}
